Skip to content

Commit 78a755a

Browse files
Bumping library version
1 parent 56b6d2e commit 78a755a

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

app/build.gradle

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ android {
3030

3131
dependencies {
3232
implementation fileTree(include: ['*.jar'], dir: 'libs')
33-
implementation 'androidx.appcompat:appcompat:1.2.0'
34-
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
35-
implementation 'com.google.android.material:material:1.3.0'
33+
implementation 'androidx.appcompat:appcompat:1.4.1'
34+
implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
35+
implementation 'com.google.android.material:material:1.5.0'
3636
implementation 'com.github.bumptech.glide:glide:4.12.0'
3737

3838
// NOTE(lucianocheng): Using the local photoeditor implementation instead of the published
@@ -42,13 +42,13 @@ dependencies {
4242
implementation project(':photoeditor')
4343
implementation 'androidx.cardview:cardview:1.0.0'
4444

45-
testImplementation 'junit:junit:4.12'
45+
testImplementation 'junit:junit:4.13.2'
4646

47-
androidTestImplementation 'androidx.test:runner:1.3.0'
48-
androidTestImplementation 'androidx.test:rules:1.3.0'
49-
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
50-
androidTestImplementation 'androidx.test.espresso:espresso-contrib:3.3.0'
51-
implementation "androidx.core:core-ktx:+"
47+
androidTestImplementation 'androidx.test:runner:1.4.0'
48+
androidTestImplementation 'androidx.test:rules:1.4.0'
49+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
50+
androidTestImplementation 'androidx.test.espresso:espresso-contrib:3.4.0'
51+
implementation "androidx.core:core-ktx:1.7.0"
5252
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
5353
implementation "androidx.fragment:fragment-ktx:1.4.0"
5454
}

photoeditor/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ android {
88
defaultConfig {
99
minSdkVersion 14
1010
targetSdkVersion 30
11-
versionCode 5
12-
versionName "1.5.1"
11+
versionCode 6
12+
versionName "2.0.0-beta"
1313
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1414

1515
// https://stackoverflow.com/a/69043734
@@ -43,7 +43,7 @@ android {
4343
dependencies {
4444
implementation fileTree(dir: 'libs', include: ['*.jar'])
4545

46-
implementation 'androidx.appcompat:appcompat:1.2.0'
46+
implementation 'androidx.appcompat:appcompat:1.4.1'
4747
implementation 'androidx.legacy:legacy-support-v13:1.0.0'
4848
implementation 'androidx.test:core-ktx:1.4.0'
4949

@@ -54,14 +54,14 @@ dependencies {
5454
testImplementation 'junit:junit:4.13.2'
5555
testImplementation 'org.mockito:mockito-core:3.8.0'
5656
testImplementation 'org.robolectric:robolectric:4.5.1'
57-
implementation "androidx.core:core-ktx:+"
57+
implementation "androidx.core:core-ktx:1.7.0"
5858
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
5959
}
6060

6161

6262
ext {
6363
PUBLISH_GROUP_ID = 'com.burhanrashid52'
64-
PUBLISH_VERSION = '1.5.1'
64+
PUBLISH_VERSION = '2.0.0-beta'
6565
PUBLISH_ARTIFACT_ID = 'photoeditor'
6666
}
6767

scripts/publish-mavencentral.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ task androidSourcesJar(type: Jar) {
66
if (project.plugins.findPlugin("com.android.library")) {
77
// For Android libraries
88
from android.sourceSets.main.java.srcDirs
9-
//from android.sourceSets.main.kotlin.srcDirs
9+
from android.sourceSets.main.kotlin.srcDirs
1010
} else {
1111
// For pure Kotlin libraries, in case you have them
1212
from sourceSets.main.java.srcDirs
13-
// from sourceSets.main.kotlin.srcDirs
13+
from sourceSets.main.kotlin.srcDirs
1414
}
1515
}
1616

0 commit comments

Comments
 (0)