diff --git a/.drone.yml b/.drone.yml index dcd7eea6..e70125c0 100644 --- a/.drone.yml +++ b/.drone.yml @@ -229,7 +229,7 @@ steps: status: [ success ] environment: pfx: - from_secret: pfx + from_secret: pfx2022_b64 pfx_pass: from_secret: pfx_pass commands: @@ -245,6 +245,8 @@ steps: - echo $Env:pfx > codesign.pfx.b64 - certutil -decode codesign.pfx.b64 codesign.pfx - signtool sign /v /fd sha256 /a /f codesign.pfx /p $Env:pfx_pass /tr http://timestamp.digicert.com $Env:releasedir\cwtch.exe + - signtool sign /v /fd sha256 /a /f codesign.pfx /p $Env:pfx_pass /tr http://timestamp.digicert.com $Env:releasedir\libCwtch.dll + - signtool sign /v /fd sha256 /a /f codesign.pfx /p $Env:pfx_pass /tr http://timestamp.digicert.com $Env:releasedir\flutter_windows.dll - copy windows\runner\resources\knot_128.ico $Env:releasedir\cwtch.ico - makensis windows\nsis\cwtch-installer.nsi - move windows\nsis\cwtch-installer.exe cwtch-installer.exe diff --git a/LIBCWTCH-GO-MACOS.version b/LIBCWTCH-GO-MACOS.version index 38206807..b9c00d44 100644 --- a/LIBCWTCH-GO-MACOS.version +++ b/LIBCWTCH-GO-MACOS.version @@ -1 +1 @@ -2022-06-22-15-36-1.7.1-10-g231e27d \ No newline at end of file +2022-07-22-12-41-v1.8.0-7-g7b3e842 \ No newline at end of file diff --git a/LIBCWTCH-GO.version b/LIBCWTCH-GO.version index 32c7c700..d6908319 100644 --- a/LIBCWTCH-GO.version +++ b/LIBCWTCH-GO.version @@ -1 +1 @@ -2022-06-21-22-49-1.7.1-2-gff23465 \ No newline at end of file +2022-07-22-16-41-v1.8.0-7-g7b3e842 \ No newline at end of file diff --git a/android/app/build.gradle b/android/app/build.gradle index 7fc72e37..3a6ade41 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -99,7 +99,10 @@ dependencies { //implementation("androidx.work:work-runtime:$work_version") // Kotlin + coroutines - implementation("androidx.work:work-runtime-ktx:2.5.0") + // 2022.06: upgraded from 2.5 to 2.7 for android 12 + // err: "requires that one of FLAG_IMMUTABLE or FLAG_MUTABLE be specified when creating a PendingIntent" + // as per https://github.com/flutter/flutter/issues/93609 + implementation 'androidx.work:work-runtime-ktx:2.7.0' // optional - RxJava2 support //implementation("androidx.work:work-rxjava2:$work_version") diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 379253be..6c9df750 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -16,7 +16,8 @@ android:theme="@style/NormalTheme" android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" android:hardwareAccelerated="true" - android:windowSoftInputMode="adjustResize"> + android:windowSoftInputMode="adjustResize" + android:exported="true">