mirror of
https://github.com/DanielPollithy/flashwifi.git
synced 2025-10-16 11:45:32 +00:00
54 lines
1.8 KiB
Groovy
54 lines
1.8 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 25
|
|
buildToolsVersion '26.0.2'
|
|
defaultConfig {
|
|
applicationId "jenny.daniel.wifip2p"
|
|
minSdkVersion 23
|
|
targetSdkVersion 23
|
|
multiDexEnabled = true
|
|
versionCode 1
|
|
versionName "1.0"
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
configurations.all {
|
|
resolutionStrategy.force 'com.google.code.findbugs:jsr305:1.3.9'
|
|
}
|
|
|
|
|
|
compileOptions {
|
|
targetCompatibility 1.8
|
|
sourceCompatibility 1.8
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
compile 'com.android.support:support-v4:25.3.1'
|
|
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
|
|
exclude group: 'com.android.support', module: 'support-annotations'
|
|
})
|
|
compile 'com.google.guava:guava:23.3-android'
|
|
compile 'com.android.support:appcompat-v7:25.3.1'
|
|
compile 'com.android.support:cardview-v7:25.3.+'
|
|
compile 'com.android.support.constraint:constraint-layout:1.0.2'
|
|
compile 'com.android.support:design:25.3.1'
|
|
compile 'com.pddstudio:encrypted-preferences:1.3.0'
|
|
compile 'com.github.iotaledger:iota~lib~java:0.9.10'
|
|
compile 'com.eclipsesource.j2v8:j2v8:4.8.0@aar'
|
|
//compile 'com.github.gosticks:iotaflash.js-java-wrapper:0.0.6'
|
|
compile 'com.google.code.gson:gson:2.8.1'
|
|
compile 'com.github.kenglxn.QRGen:android:2.4.0'
|
|
compile 'me.dm7.barcodescanner:zxing:1.9.8'
|
|
compile 'pl.droidsonroids.gif:android-gif-drawable:1.2.10'
|
|
compile 'com.google.api-client:google-api-client:1.23.0'
|
|
testCompile 'junit:junit:4.12'
|
|
}
|