Skip to content

Commit

Permalink
Updated build tools
Browse files Browse the repository at this point in the history
Signed-off-by: sunilpaulmathew <[email protected]>
  • Loading branch information
sunilpaulmathew committed Dec 17, 2023
1 parent 707c689 commit 1cf8629
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Set Up JDK
uses: actions/setup-java@v1
with:
java-version: 11
java-version: 17

- name: Change wrapper permissions
run: chmod +x ./gradlew
Expand Down
14 changes: 7 additions & 7 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ android {
}

namespace 'com.sunilpaulmathew.snotz'
compileSdkVersion 33
compileSdk 34

defaultConfig {
applicationId "com.sunilpaulmathew.snotz"
minSdkVersion 17
targetSdkVersion 33
minSdk 17
targetSdk 34
versionCode 31
versionName "v0.31"
multiDexEnabled = true
Expand All @@ -40,7 +40,7 @@ android {
}
}

flavorDimensions "release"
flavorDimensions.add("release")
productFlavors {
play {
dimension "release"
Expand All @@ -58,7 +58,7 @@ android {
dependencies {
implementation 'androidx.biometric:biometric:1.1.0'
implementation 'androidx.multidex:multidex:2.0.1'
playImplementation 'com.android.billingclient:billing:5.2.0'
playImplementation 'com.android.billingclient:billing:6.1.0'

def sCommon_Version = 'aa1019da38'
implementation "com.github.sunilpaulmathew.sCommon:adapters:${sCommon_Version}"
Expand All @@ -68,7 +68,7 @@ dependencies {
implementation "com.github.sunilpaulmathew.sCommon:translatorutils:${sCommon_Version}"

implementation 'com.github.QuadFlask:colorpicker:0.0.15'
implementation "com.google.android.material:material:1.9.0"
implementation "com.google.code.gson:gson:2.9.0"
implementation "com.google.android.material:material:1.11.0"
implementation "com.google.code.gson:gson:2.10"
implementation 'me.dm7.barcodescanner:zxing:1.9.8'
}
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.3.1'
classpath 'com.android.tools.build:gradle:8.2.0'
}
}

Expand Down
5 changes: 4 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,7 @@ org.gradle.jvmargs=-Xmx2048m
android.useAndroidX=true
# Automatically convert third-party libraries to use AndroidX
android.enableJetifier=true
org.gradle.unsafe.configuration-cache=true
org.gradle.unsafe.configuration-cache=true
android.defaults.buildfeatures.buildconfig=true
android.nonTransitiveRClass=false
android.nonFinalResIds=false
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-all.zip

0 comments on commit 1cf8629

Please sign in to comment.