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

Commit db147ecc authored by Aayush Gupta's avatar Aayush Gupta
Browse files

BlissIconPack: gradle: Upstream dependencies and reformat file



- Migrate to AndroidX
- Drop non-required lint block
- Upstream dependencies
- Reformat plugins block

Signed-off-by: Aayush Gupta's avatarAayush Gupta <theimpulson@e.email>
parent 7406c3b5
Loading
Loading
Loading
Loading
+11 −10
Original line number Diff line number Diff line
apply plugin: 'com.android.application'
plugins {
    id 'com.android.application'
}

android {
    compileSdkVersion 30
    buildToolsVersion '30.0.3'

    defaultConfig {
        applicationId "foundation.e.blissiconpack"
        minSdkVersion 25
        targetSdkVersion 30
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    lintOptions {
        abortOnError false

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }

    buildTypes {
        release {
            minifyEnabled false
@@ -24,9 +26,8 @@ android {

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    implementation 'com.android.support:appcompat-v7:26.+'
    testImplementation 'junit:junit:4.12'
    implementation 'androidx.appcompat:appcompat:1.3.0'
    testImplementation 'junit:junit:4.13.2'
    androidTestImplementation 'androidx.test.ext:junit:1.1.3'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
}
+2 −0
Original line number Diff line number Diff line
@@ -9,6 +9,8 @@

# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
android.enableJetifier=true
android.useAndroidX=true
org.gradle.jvmargs=-Xmx1536m

# When configured, Gradle will run in incubating parallel mode.