mirror of
https://github.com/TeamNewPipe/NewPipe.git
synced 2024-11-22 11:02:35 +01:00
29 lines
710 B
Groovy
29 lines
710 B
Groovy
|
apply plugin: 'com.android.application'
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 22
|
||
|
buildToolsVersion "22.0.1"
|
||
|
|
||
|
defaultConfig {
|
||
|
applicationId "org.schabi.newpipe"
|
||
|
minSdkVersion 16
|
||
|
targetSdkVersion 22
|
||
|
versionCode 1
|
||
|
versionName "0.3"
|
||
|
}
|
||
|
buildTypes {
|
||
|
release {
|
||
|
minifyEnabled false
|
||
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
compile fileTree(include: ['*.jar'], dir: 'libs')
|
||
|
compile 'com.android.support:appcompat-v7:22.2.1'
|
||
|
compile 'com.android.support:support-v4:22.2.1'
|
||
|
compile 'org.jsoup:jsoup:1.8.3'
|
||
|
compile 'org.mozilla:rhino:1.7.7'
|
||
|
}
|