Skip to content

Commit

Permalink
update gradle config
Browse files Browse the repository at this point in the history
  • Loading branch information
neoblackxt committed Dec 15, 2024
1 parent 18670c3 commit 38dd0ba
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions .idea/migrations.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 8 additions & 7 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 33
compileSdk 35
defaultConfig {
applicationId "com.thinkdifferent.anywebview"
minSdkVersion 24
targetSdkVersion 33
minSdk 24
targetSdk 35
versionCode 3
versionName '1.2'
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
Expand All @@ -17,15 +17,16 @@ android {
}
}
compileOptions {
sourceCompatibility = 1.8
targetCompatibility = 1.8
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
namespace 'com.thinkdifferent.anywebview'
}

repositories {
mavenCentral();
jcenter()
google()
mavenCentral()
maven { url 'https://api.xposed.info/' }
}

dependencies {
Expand Down
8 changes: 3 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,9 @@ buildscript {
repositories {
google()
mavenCentral()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.0.0'
classpath 'com.android.tools.build:gradle:8.7.3'


// NOTE: Do not place your application dependencies here; they belong
Expand All @@ -20,10 +19,9 @@ allprojects {
repositories {
google()
mavenCentral()
jcenter();
}
}

task clean(type: Delete) {
delete rootProject.buildDir
tasks.register('clean', Delete) {
delete rootProject.layout.buildDirectory
}
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Wed Nov 11 23:39:59 CST 2020
#Mon Dec 16 00:46:35 CST 2024
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip

0 comments on commit 38dd0ba

Please sign in to comment.