File tree 2 files changed +17
-6
lines changed
2 files changed +17
-6
lines changed Original file line number Diff line number Diff line change
1
+ ## UNRELEASED
2
+
3
+ - Add support for Android namespace
4
+ - Bump ` compileSdkVersion ` to 34
5
+ - Update ` com.google.android.play:app-update ` to ` 2.1.0 `
6
+
1
7
## 3.0.1
2
8
3
9
- Upgraded ` flutter_lints ` to ` ^3.0.1 `
Original file line number Diff line number Diff line change @@ -2,14 +2,14 @@ group 'me.mateusfccp.update_available_android'
2
2
version ' 1.0-SNAPSHOT'
3
3
4
4
buildscript {
5
- ext. kotlin_version = ' 1.5.31 '
5
+ ext. kotlin_version = ' 1.6.21 '
6
6
repositories {
7
7
google()
8
- jcenter ()
8
+ mavenCentral ()
9
9
}
10
10
11
11
dependencies {
12
- classpath ' com.android.tools.build:gradle:3.5.0 '
12
+ classpath ' com.android.tools.build:gradle:7.2.2 '
13
13
classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
14
14
}
15
15
}
@@ -25,7 +25,12 @@ apply plugin: 'com.android.library'
25
25
apply plugin : ' kotlin-android'
26
26
27
27
android {
28
- compileSdkVersion 33
28
+ compileSdkVersion 34
29
+
30
+ // Conditional for compatibility with AGP <4.2.
31
+ if (project. android. hasProperty(" namespace" )) {
32
+ namespace ' me.mateusfccp.update_available_android'
33
+ }
29
34
30
35
sourceSets {
31
36
main. java. srcDirs + = ' src/main/kotlin'
@@ -41,6 +46,6 @@ android {
41
46
dependencies {
42
47
implementation " org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version "
43
48
44
- implementation ' com.google.android.play:app-update:2.0.1 '
45
- implementation ' com.google.android.play:app-update-ktx:2.0.1 '
49
+ implementation ' com.google.android.play:app-update:2.1.0 '
50
+ implementation ' com.google.android.play:app-update-ktx:2.1.0 '
46
51
}
You can’t perform that action at this time.
0 commit comments