12345678910111213141516171819202122232425262728 |
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion 26
- buildToolsVersion "26.0.1"
- defaultConfig {
- minSdkVersion 19
- targetSdkVersion 22
- versionCode 1
- versionName "1.0"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
- dependencies {
- compile 'com.android.support:appcompat-v7:23.0.1'
- compile 'com.facebook.react:react-native:+'
- compile 'com.madgag.spongycastle:core:1.58.0.0'
- compile 'com.madgag.spongycastle:prov:1.54.0.0'
- compile 'com.madgag.spongycastle:pkix:1.54.0.0'
- compile 'com.madgag.spongycastle:pg:1.54.0.0'
- }
|