Skip to content
Snippets Groups Projects
Select Git revision
  • f3cb0b91b0c7e89ac04bec6dd0cb1ee46cd6d232
  • master default
  • add-license-1
  • 6.2
  • 6.0
  • 5.3b
  • 5.1
  • 4.12
  • 4.4
  • 4.3
10 results

build.gradle

Blame
  • build.gradle 1.06 KiB
    apply plugin: 'com.android.application'
    apply plugin: 'versionPlugin'
    
    android {
        signingConfigs {
            config {
            }
        }
    
        compileSdkVersion 23
        buildToolsVersion '23.0.2'
        defaultConfig {
            applicationId "ohi.andre.consolelauncher"
            minSdkVersion 8
            targetSdkVersion 23
            versionCode 73
            versionName "4.4"
        }
    
        buildTypes {
            release {
                minifyEnabled true
                shrinkResources true
                proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
            }
        }
    
        versionPlugin {
            buildTypesMatcher = 'release'
    
            supportBuildNumber = true
            buildNumberPrefix = 'b'
    
            fileNameFormat = 't-ui-vrs_$versionName'
        }
    
        compileOptions {
            sourceCompatibility JavaVersion.VERSION_1_7
            targetCompatibility JavaVersion.VERSION_1_7
        }
    
        dependencies {
            compile 'com.android.support:appcompat-v7:23.4.0'
            compile 'com.github.Andre1299:CompareString:1.4.2'
            compile 'commons-io:commons-io:2.4'
        }
    
    }