File tree Expand file tree Collapse file tree 3 files changed +13
-7
lines changed Expand file tree Collapse file tree 3 files changed +13
-7
lines changed Original file line number Diff line number Diff line change @@ -5,13 +5,13 @@ buildscript {
5
5
kotlin_version = ' 1.6.21'
6
6
}
7
7
ext. versions = [
8
- ' compileSdk' : 30 ,
9
- ' minSdk' : 21 ,
10
- ' targetSdk' : 30 ,
8
+ ' compileSdk' : 34 ,
9
+ ' minSdk' : 23 ,
10
+ ' targetSdk' : 34 ,
11
11
]
12
12
repositories {
13
13
google()
14
- jcenter ()
14
+ mavenCentral ()
15
15
}
16
16
dependencies {
17
17
classpath ' com.android.tools.build:gradle:8.2.0'
@@ -22,10 +22,10 @@ buildscript {
22
22
allprojects {
23
23
repositories {
24
24
google()
25
- jcenter ()
25
+ mavenCentral ()
26
26
}
27
27
}
28
28
29
- task clean ( type : Delete ) {
29
+ tasks . register( ' clean ' , Delete ) {
30
30
delete rootProject. buildDir
31
31
}
Original file line number Diff line number Diff line change @@ -29,12 +29,16 @@ android {
29
29
}
30
30
31
31
compileOptions {
32
+ coreLibraryDesugaringEnabled true
33
+
32
34
sourceCompatibility = 1.8
33
35
targetCompatibility = 1.8
34
36
}
35
37
}
36
38
37
39
dependencies {
40
+ coreLibraryDesugaring ' com.android.tools:desugar_jdk_libs:1.1.5'
41
+
38
42
implementation project(" :studyplus-android-sdk" )
39
43
40
44
implementation " androidx.appcompat:appcompat:1.2.0"
Original file line number Diff line number Diff line change 8
8
android : roundIcon =" @mipmap/ic_launcher_round"
9
9
android : supportsRtl =" true"
10
10
android : theme =" @style/AppTheme" >
11
- <activity android : name =" jp.studyplus.android.sdk_example_kt.MainActivity" >
11
+ <activity
12
+ android : name =" jp.studyplus.android.sdk_example_kt.MainActivity"
13
+ android : exported =" true" >
12
14
<intent-filter >
13
15
<action android : name =" android.intent.action.MAIN" />
14
16
You can’t perform that action at this time.
0 commit comments