File tree 6 files changed +16
-20
lines changed
src/main/java/com/yalantis/ucrop
6 files changed +16
-20
lines changed Original file line number Diff line number Diff line change 1
1
buildscript {
2
2
ext {
3
- androidx_appcompat_version = " 1.1.0 "
4
- androidx_core_version = " 1.1 .0"
5
- androidx_exifinterface_version = " 1.1.0-beta01 "
6
- androidx_transition_version = " 1.2.0-rc01 "
7
- constraintlayout_version = " 1 .1.3 "
3
+ androidx_appcompat_version = " 1.6.1 "
4
+ androidx_core_version = " 1.9 .0"
5
+ androidx_exifinterface_version = " 1.3.6 "
6
+ androidx_transition_version = " 1.4.1 "
7
+ constraintlayout_version = " 2 .1.4 "
8
8
}
9
9
10
10
repositories {
@@ -15,7 +15,7 @@ buildscript {
15
15
}
16
16
}
17
17
dependencies {
18
- classpath ' com.android.tools.build:gradle:3.5.0 '
18
+ classpath ' com.android.tools.build:gradle:7.4.2 '
19
19
}
20
20
}
21
21
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.4.1 -all.zip
6
+ distributionUrl =https\://services.gradle.org/distributions/gradle-7.5 -all.zip
Original file line number Diff line number Diff line change 1
- // TODO update the deployment script
2
1
/*
3
2
apply plugin: 'maven'
4
3
apply plugin: 'signing'
Original file line number Diff line number Diff line change 1
1
apply plugin : ' com.android.application'
2
2
3
3
android {
4
- compileSdkVersion 31
5
- buildToolsVersion ' 30.0.3'
4
+ compileSdk 33
6
5
defaultConfig {
7
6
applicationId " com.yalantis.ucrop.sample"
8
7
minSdkVersion 14
9
- targetSdkVersion 31
8
+ targetSdkVersion 33
10
9
versionCode 13
11
10
versionName " 1.2.4"
12
11
}
@@ -18,8 +17,8 @@ android {
18
17
}
19
18
}
20
19
compileOptions {
21
- sourceCompatibility JavaVersion . VERSION_1_7
22
- targetCompatibility JavaVersion . VERSION_1_7
20
+ sourceCompatibility JavaVersion . VERSION_1_8
21
+ targetCompatibility JavaVersion . VERSION_1_8
23
22
}
24
23
lintOptions {
25
24
abortOnError false
Original file line number Diff line number Diff line change @@ -2,12 +2,10 @@ apply plugin: 'com.android.library'
2
2
apply from : ' ../mavenpush.gradle'
3
3
4
4
android {
5
- compileSdkVersion 31
6
- buildToolsVersion ' 30.0.2'
7
-
5
+ compileSdk 33
8
6
defaultConfig {
9
7
minSdkVersion 14
10
- targetSdkVersion 31
8
+ targetSdkVersion 33
11
9
versionCode 26
12
10
versionName " 2.2.8-native"
13
11
@@ -20,8 +18,8 @@ android {
20
18
}
21
19
}
22
20
compileOptions {
23
- sourceCompatibility JavaVersion . VERSION_1_7
24
- targetCompatibility JavaVersion . VERSION_1_7
21
+ sourceCompatibility JavaVersion . VERSION_1_8
22
+ targetCompatibility JavaVersion . VERSION_1_8
25
23
}
26
24
lintOptions {
27
25
abortOnError false
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ public class UCrop {
35
35
public static final int RESULT_ERROR = 96 ;
36
36
public static final int MIN_SIZE = 10 ;
37
37
38
- private static final String EXTRA_PREFIX = BuildConfig .APPLICATION_ID ;
38
+ private static final String EXTRA_PREFIX = BuildConfig .LIBRARY_PACKAGE_NAME ;
39
39
40
40
public static final String EXTRA_INPUT_URI = EXTRA_PREFIX + ".InputUri" ;
41
41
public static final String EXTRA_OUTPUT_URI = EXTRA_PREFIX + ".OutputUri" ;
You can’t perform that action at this time.
0 commit comments