Skip to content

Commit c6e6e57

Browse files
authored
Update version to 23.11.0 (#31)
* Update version to 23.11.0 * Upgrade Gradle to 8.0 and AGP to 8.1.4
1 parent a93fe60 commit c6e6e57

File tree

6 files changed

+14
-7
lines changed

6 files changed

+14
-7
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@ jobs:
1212

1313
steps:
1414
- uses: actions/checkout@v3
15+
- name: Set up Java 17 for AGP
16+
uses: actions/setup-java@v3
17+
with:
18+
distribution: 'temurin'
19+
java-version: 17
20+
cache: 'gradle'
1521

1622
- uses: sparkfabrik/[email protected]
1723
with:

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ implementation fileTree(dir: "libs", include: ["*.jar"])
4141
implementation 'androidx.core:core-ktx:1.9.0'
4242
implementation 'androidx.appcompat:appcompat:1.6.0'
4343
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
44-
implementation 'com.aspose:aspose-barcode-cloud:23.10.0'
44+
implementation 'com.aspose:aspose-barcode-cloud:23.11.0'
4545
implementation 'com.google.android.material:material:1.8.0'
4646
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
4747
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'

app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="com.aspose.barcode.cloud.demo_app">
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
43

54
<uses-permission android:name="android.permission.INTERNET" />
65
<uses-permission android:name="android.permission.READ_MEDIA_IMAGES" />
@@ -37,4 +36,4 @@
3736
</activity>
3837
</application>
3938

40-
</manifest>
39+
</manifest>

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
plugins {
3-
id 'com.android.application' version '7.4.0' apply false
4-
id 'com.android.library' version '7.4.0' apply false
3+
id 'com.android.application' version '8.1.4' apply false
4+
id 'com.android.library' version '8.1.4' apply false
55
id 'org.jetbrains.kotlin.android' version '1.7.21' apply false
66
}
77
ext.kotlin_version = '1.7.21'

gradle.properties

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,5 @@ kotlin.code.style=official
2121
# resources declared in the library itself and none from the library's dependencies,
2222
# thereby reducing the size of the R class for that library
2323
android.nonTransitiveRClass=true
24+
android.defaults.buildfeatures.buildconfig=true
25+
android.nonFinalResIds=false
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Fri Jan 27 19:13:42 YEKT 2023
22
distributionBase=GRADLE_USER_HOME
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip
44
distributionPath=wrapper/dists
55
zipStorePath=wrapper/dists
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)