Skip to content

Commit

Permalink
pkgtest: fix deprecated features, remove unused dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mhsmith committed Aug 20, 2023
1 parent 1abab99 commit 95da249
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions server/pypi/pkgtest/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,12 @@ ext.TEST_PACKAGES = [

android {
namespace "com.chaquo.python.pkgtest3"
compileSdkVersion 33
compileSdk = 33

defaultConfig {
applicationId "com.chaquo.python.pkgtest3"
minSdkVersion 21
targetSdkVersion 33
minSdk = 21
targetSdk = 33

versionName rootProject.version
def verParsed = rootProject.version.split(/\./).collect { Integer.parseInt(it) }
Expand Down Expand Up @@ -141,13 +141,11 @@ def addPackages(flavor, List<String> packages) {


dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
// appcompat version 1.2.0 is required to fix an incompatibility with WebView on API level
// 21 (https://stackoverflow.com/questions/41025200).
implementation 'androidx.appcompat:appcompat:1.2.0-beta01'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'androidx.lifecycle:lifecycle-extensions:2.1.0'
implementation 'androidx.preference:preference:1.1.1'
implementation 'junit:junit:4.12'
testImplementation 'junit:junit:4.12'
}

0 comments on commit 95da249

Please sign in to comment.