https://github.com/opengemara/shiurim
Revision f7f38ff872cdfddec58326ef8ac0d14ae16a8d43 authored by Y D on 18 May 2016, 08:43:18 UTC, committed by Y D on 18 May 2016, 08:43:18 UTC
1 parent 2d88800
Raw File
Tip revision: f7f38ff872cdfddec58326ef8ac0d14ae16a8d43 authored by Y D on 18 May 2016, 08:43:18 UTC
Finished Length
Tip revision: f7f38ff
build.gradle
apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.3"

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

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