Skip to content

Commit

Permalink
Updated to compile against Android 12
Browse files Browse the repository at this point in the history
  • Loading branch information
erickok committed Dec 8, 2021
1 parent 142398c commit f182898
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
11 changes: 5 additions & 6 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 30
buildToolsVersion "30.0.2"
compileSdkVersion 31

defaultConfig {
applicationId "org.transdroid.search"
minSdkVersion 14
targetSdkVersion 30
targetSdkVersion 31
versionCode 37
versionName "4.1"
versionName "4.2"
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
}

Expand Down Expand Up @@ -55,9 +54,9 @@ android {
}

dependencies {
implementation 'com.android.volley:volley:1.2.0'
implementation 'com.android.volley:volley:1.2.1'
implementation 'org.jsoup:jsoup:1.13.1'

androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'com.google.truth:truth:1.0.1'
}
3 changes: 2 additions & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@
<activity
android:name=".gui.SettingsActivity"
android:label="@string/pref_settingslabel"
android:noHistory="true">
android:noHistory="true"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:4.2.0'
classpath 'com.android.tools.build:gradle:7.0.3'
}
}

Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit f182898

Please sign in to comment.