Skip to content
Snippets Groups Projects
Select Git revision
  • 72c573d04877a859f4e1fa67a0827fadcd9dc465
  • master default protected
  • 230-add-non-free-duolingo-app-icon
  • 201-improve-app-metadata
4 results

build.gradle

Blame
  • user avatar
    TacoTheDank authored
    72c573d0
    History
    build.gradle 772 B
    apply plugin: 'com.android.application'
    
    android {
        compileSdkVersion 28
        buildToolsVersion '28.0.3'
    
        defaultConfig {
            applicationId "org.xphnx.ameixa"
            minSdkVersion 16
            targetSdkVersion 28
            versionCode 406
            versionName "4.0.6"
        }
    
        compileOptions {
            sourceCompatibility JavaVersion.VERSION_1_8
            targetCompatibility JavaVersion.VERSION_1_8
        }
    
        buildTypes {
            release {
                minifyEnabled true
                proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
            }
            debug {
                zipAlignEnabled true
            }
        }
    }
    
    dependencies {
        testImplementation 'junit:junit:4.12'
        implementation 'com.android.support:appcompat-v7:28.0.0'
    }