Skip to content
Snippets Groups Projects
Select Git revision
  • 27cd95fa33ccc44ff2afbe59de25180eba542b83
  • master default
2 results

activity_login.xml

Blame
  • build.gradle 850 B
    apply plugin: 'com.android.application'
    android {
    
        compileSdkVersion 25
        buildToolsVersion '25.0.1'
        defaultConfig {
            applicationId "ohi.andre.consolelauncher"
            minSdkVersion 8
            targetSdkVersion 25
            versionCode 83
            versionName "4.12"
        }
    
        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'
            compile 'commons-io:commons-io:2.4'
        }
    
    }