https://github.com/alegen/netclip
Raw File
Tip revision: 8fc8bea117d4c5491062ce4e864247c4449c0bea authored by Alex Geana on 22 February 2016, 20:38:38 UTC
adding changelog
Tip revision: 8fc8bea
build.gradle
buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:1.5.0'
    }
}

apply plugin: 'android'

android {
    compileSdkVersion 'android-23'
    buildToolsVersion '23.0.2'

    defaultConfig {
        applicationId "net.alegen.android.netclip"
        minSdkVersion 14
        targetSdkVersion 23
        versionCode 2
        versionName "1.1"
    }

    signingConfigs {
        release {
            storeFile file("android-keystore.jks")
            storePassword System.console().readLine("\nKeystore password: ")
            keyAlias "netclip"
            keyPassword System.console().readLine("\nKey password: ")
        }
    }

    buildTypes {
        debug {
            debuggable true
        }
        release {
            minifyEnabled false
            proguardFile getDefaultProguardFile('proguard-android.txt')
            signingConfig signingConfigs.release
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:support-v4:23.1.1'
    compile 'com.android.support:appcompat-v7:23.1.1'
}

allprojects {
    gradle.projectsEvaluated {
        tasks.withType(JavaCompile) {
            options.compilerArgs << "-Xlint:deprecation"
        }
    }
}
back to top