Files
loongoffice/android/experimental/LOAndroid/app/build.gradle
Tomaž Vajngerl 8339f8abc5 Initial commit of Android Viewer project
Project was created with Android Studio. Currently includes the
base of Fennec's LayerView and dependencies.

Change-Id: I5c3ae253d153f659eb92bd0ca17ef95372b71b23
2014-06-30 14:48:01 +02:00

25 lines
521 B
Groovy

apply plugin: 'android'
android {
compileSdkVersion 19
buildToolsVersion "19.1.0"
defaultConfig {
minSdkVersion 15
targetSdkVersion 19
versionCode 1
versionName "1.0"
}
buildTypes {
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:19.+'
}