File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change
1
+ # 0.5.5
2
+ * Adds a namespace in ` build.gradle ` for compatibility with AGP 8.0.
3
+
1
4
# 0.5.4
2
5
* Added MacOS desktop support.
3
6
* Added Windows desktop support.
Original file line number Diff line number Diff line change @@ -25,6 +25,11 @@ apply plugin: 'com.android.library'
25
25
apply plugin : ' kotlin-android'
26
26
27
27
android {
28
+ // Conditional for compatibility with AGP <4.2.
29
+ if (project. android. hasProperty(" namespace" )) {
30
+ namespace ' dev.google.webcrypto'
31
+ }
32
+
28
33
compileSdkVersion 31
29
34
30
35
// We depend on cmake for the native parts.
Original file line number Diff line number Diff line change 13
13
# limitations under the License.
14
14
15
15
name : webcrypto
16
- version : 0.5.4
16
+ version : 0.5.5
17
17
description : Cross-platform implementation of Web Cryptography APIs for Flutter.
18
18
repository : https://github.com/google/webcrypto.dart
19
19
You can’t perform that action at this time.
0 commit comments