Skip to content

Commit e70c224

Browse files
Dr. Maxie Dion SchmidtDr. Maxie Dion Schmidt
authored andcommitted
Release v1.3.6-beta : Attempts to patch jitpack.io library references
1 parent 21b32dd commit e70c224

4 files changed

Lines changed: 22 additions & 15 deletions

File tree

AndroidFilePickerLightLibrary/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ android {
4646
targetSdkVersion 35
4747
compileSdkVersion 35
4848
compileSdk 35
49-
versionCode 27
50-
versionName "1.3.4-beta"
49+
versionCode 28
50+
versionName "1.3.5-beta"
5151
buildFeatures.buildConfig = true
5252
buildToolsVersion '35.0.1'
5353

AndroidFilePickerLightLibrary/build/generated/source/buildConfig/debug/com/maxieds/androidfilepickerlightlibrary/BuildConfig.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ public final class BuildConfig {
88
public static final String LIBRARY_PACKAGE_NAME = "com.maxieds.androidfilepickerlightlibrary";
99
public static final String BUILD_TYPE = "debug";
1010
// Field from build type: debug
11-
public static final String BUILD_TIMESTAMP = "2026-03-05-030431";
11+
public static final String BUILD_TIMESTAMP = "2026-03-05-052604";
1212
// Field from build type: debug
1313
public static final String GIT_COMMIT_DATE = "";
1414
// Field from build type: debug
1515
public static final String GIT_COMMIT_HASH = "";
1616
// Field from build type: debug
17-
public static final long VERSION_CODE = 27L;
17+
public static final long VERSION_CODE = 28L;
1818
// Field from build type: debug
19-
public static final String VERSION_NAME = "1.3.4-beta";
19+
public static final String VERSION_NAME = "1.3.5-beta";
2020
}

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ android {
1010
applicationId "com.maxieds.androidfilepickerlight"
1111
minSdkVersion 29
1212
targetSdkVersion 35
13-
versionCode 8
14-
versionName "1.3.4-beta"
13+
versionCode 9
14+
versionName "1.3.5-beta"
1515
buildFeatures.buildConfig = true
1616
buildToolsVersion '35.0.1'
1717

build.gradle

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,30 @@
44
plugins {
55

66
alias(libs.plugins.android.application) apply false
7+
//id 'com.android.library'
78
id 'maven-publish'
89
id 'java'
910

1011
}
1112

12-
group 'com.maxieds.androidfilepickerlightlibrary'
13-
version '1.3.4-beta'
13+
afterEvaluate {
1414

15-
publishing {
15+
publishing {
1616

17-
publications {
17+
publications {
18+
19+
mavenJava(MavenPublication) {
20+
// Publish the 'java' component (generated by the 'java' plugin):
21+
from components.java
22+
//from components.release
23+
24+
groupId 'com.maxieds.androidfilepickerlightlibrary'
25+
artifactId 'AndroidFilePickerLightLibrary'
26+
version '1.3.5-beta'
27+
28+
}
1829

19-
mavenJava(MavenPublication) {
20-
// Publish the 'java' component (generated by the 'java' plugin):
21-
from components.java
2230
}
2331

2432
}
25-
2633
}

0 commit comments

Comments
 (0)