mirror of https://github.com/PurpleI2P/i2pd.git
orignal
7 years ago
1 changed files with 38 additions and 0 deletions
@ -0,0 +1,38 @@ |
|||||||
|
buildscript { |
||||||
|
repositories { |
||||||
|
mavenCentral() |
||||||
|
jcenter() |
||||||
|
} |
||||||
|
dependencies { |
||||||
|
classpath 'com.android.tools.build:gradle:2.1.2' |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
apply plugin: 'com.android.application' |
||||||
|
|
||||||
|
android { |
||||||
|
compileSdkVersion 25 |
||||||
|
buildToolsVersion "25.0.2" |
||||||
|
defaultConfig { |
||||||
|
applicationId "org.purplei2p.i2pd" |
||||||
|
targetSdkVersion 25 |
||||||
|
minSdkVersion 14 |
||||||
|
versionCode 1 |
||||||
|
versionName "2.17.1" |
||||||
|
} |
||||||
|
sourceSets { |
||||||
|
main { |
||||||
|
manifest.srcFile 'AndroidManifest.xml' |
||||||
|
java.srcDirs = ['src'] |
||||||
|
res.srcDirs = ['res'] |
||||||
|
jniLibs.srcDirs = ['libs'] |
||||||
|
} |
||||||
|
} |
||||||
|
buildTypes { |
||||||
|
release { |
||||||
|
minifyEnabled false |
||||||
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-project.txt' |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
Loading…
Reference in new issue