Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 48659b57 authored by Vincent Bourgmayer's avatar Vincent Bourgmayer
Browse files

Update compileSDK in app/build.gradle and remove dependency

- updated compileSdkVersion from 28 to 31 to allow WorkManager API support
- removed dependency: implementation 'com.android.support:appcompat-v7:26.1.0' because
it is useless in our scope. As stated at https://developer.android.com/topic/libraries/support-library/packages#v7-appcompat
it only add ActionBar relative code. But eDrive doesn't use it for a while.
parent c616ea09
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -23,7 +23,7 @@ def getTestProp(String propName) {


android {
    compileSdkVersion 28
    compileSdkVersion 31
    defaultConfig {
        applicationId "foundation.e.drive"
        minSdkVersion 26
@@ -59,7 +59,7 @@ android {

dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    implementation 'com.android.support:appcompat-v7:26.1.0'
    //implementation 'com.android.support:appcompat-v7:26.1.0'

    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test:rules:1.0.2'