https://github.com/opengemara/shiurim
Revision 684477d7e809500265e293f07cdebacdd4e87f73 authored by Y D on 20 May 2016, 02:10:48 UTC, committed by Y D on 20 May 2016, 02:10:48 UTC
1 parent d8b894e
Raw File
Tip revision: 684477d7e809500265e293f07cdebacdd4e87f73 authored by Y D on 20 May 2016, 02:10:48 UTC
Fixed version
Tip revision: 684477d
build.gradle
apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.3"

    defaultConfig {
        applicationId "org.opengemara.shiurim"
        minSdkVersion 15
        targetSdkVersion 23
        versionCode 2
        versionName "0.1.1"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
            zipAlignEnabled true

        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.4.0'
}
back to top