File tree Expand file tree Collapse file tree 5 files changed +27
-11
lines changed Expand file tree Collapse file tree 5 files changed +27
-11
lines changed Original file line number Diff line number Diff line change @@ -4,18 +4,18 @@ version '1.0-SNAPSHOT'
4
4
buildscript {
5
5
repositories {
6
6
google()
7
- jcenter ()
7
+ mavenCentral ()
8
8
}
9
9
10
10
dependencies {
11
- classpath ' com.android.tools.build:gradle:3.5.4 '
11
+ classpath ' com.android.tools.build:gradle:4.1.0 '
12
12
}
13
13
}
14
14
15
15
rootProject. allprojects {
16
16
repositories {
17
17
google()
18
- jcenter ()
18
+ mavenCentral ()
19
19
}
20
20
}
21
21
@@ -24,15 +24,22 @@ apply plugin: 'com.android.library'
24
24
android {
25
25
compileSdkVersion 28
26
26
27
+ compileOptions {
28
+ sourceCompatibility JavaVersion . VERSION_1_8
29
+ targetCompatibility JavaVersion . VERSION_1_8
30
+ }
31
+
27
32
defaultConfig {
28
33
minSdkVersion 16
29
34
testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
30
35
consumerProguardFiles ' proguard-rules.txt'
31
36
}
37
+
32
38
lintOptions {
33
39
disable ' InvalidPackage'
34
40
}
35
41
}
42
+
36
43
dependencies {
37
44
implementation ' com.instabug.library:instabug:11.2.0'
38
45
testImplementation ' junit:junit:4.12'
Original file line number Diff line number Diff line change @@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME
2
2
distributionPath =wrapper/dists
3
3
zipStoreBase =GRADLE_USER_HOME
4
4
zipStorePath =wrapper/dists
5
- distributionUrl =https\://services.gradle.org/distributions/gradle-4.6-all .zip
5
+ distributionUrl =https\://services.gradle.org/distributions/gradle-6.8-bin .zip
Original file line number Diff line number Diff line change @@ -26,7 +26,16 @@ apply plugin: 'kotlin-android'
26
26
apply from : " $flutterRoot /packages/flutter_tools/gradle/flutter.gradle"
27
27
28
28
android {
29
- compileSdkVersion 29
29
+ compileSdkVersion 31
30
+
31
+ compileOptions {
32
+ sourceCompatibility JavaVersion . VERSION_1_8
33
+ targetCompatibility JavaVersion . VERSION_1_8
34
+ }
35
+
36
+ kotlinOptions {
37
+ jvmTarget = ' 1.8'
38
+ }
30
39
31
40
sourceSets {
32
41
main. java. srcDirs + = ' src/main/kotlin'
@@ -40,7 +49,7 @@ android {
40
49
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
41
50
applicationId " com.example.InstabugSample"
42
51
minSdkVersion 16
43
- targetSdkVersion 29
52
+ targetSdkVersion 30
44
53
versionCode flutterVersionCode. toInteger()
45
54
versionName flutterVersionName
46
55
testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
Original file line number Diff line number Diff line change 1
1
buildscript {
2
- ext. kotlin_version = ' 1.4.32 '
2
+ ext. kotlin_version = ' 1.6.20 '
3
3
repositories {
4
4
google()
5
- jcenter ()
5
+ mavenCentral ()
6
6
}
7
7
8
8
dependencies {
9
- classpath ' com.android.tools.build:gradle:3.5.4 '
9
+ classpath ' com.android.tools.build:gradle:4.1.0 '
10
10
classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version "
11
11
}
12
12
}
13
13
14
14
allprojects {
15
15
repositories {
16
16
google()
17
- jcenter ()
17
+ mavenCentral ()
18
18
maven {
19
19
url " https://sdks.instabug.com/nexus/repository/instabug-cp"
20
20
}
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
3
3
distributionPath =wrapper/dists
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
6
- distributionUrl =https\://services.gradle.org/distributions/gradle-5.6.2 -all.zip
6
+ distributionUrl =https\://services.gradle.org/distributions/gradle-6.7 -all.zip
You can’t perform that action at this time.
0 commit comments