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

build.gradle

  • build.gradle 808 B
    apply plugin: 'com.android.application'
    android {
    
        compileSdkVersion 25
        buildToolsVersion '25.0.2'
    
        defaultConfig {
            applicationId "ohi.andre.consolelauncher"
    
            minSdkVersion 8
            targetSdkVersion 23
    
            versionCode 92
            versionName "5.3f"
        }
    
        buildTypes {
            release {
                minifyEnabled true
                shrinkResources true
                proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
                zipAlignEnabled true
            }
        }
    
        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'
        }
    }