.. | .. |
---|
5 | 5 | buildToolsVersion "33.0.0" |
---|
6 | 6 | |
---|
7 | 7 | defaultConfig { |
---|
8 | | - applicationId "com.jwipc.nodka_alarmpower" |
---|
| 8 | + applicationId "com.nodka.alarmpower" |
---|
9 | 9 | minSdkVersion 19 |
---|
10 | 10 | targetSdkVersion 19 |
---|
11 | 11 | } |
---|
12 | 12 | |
---|
| 13 | + sourceSets.main { |
---|
| 14 | + jni.srcDirs = [] |
---|
| 15 | + jniLibs.srcDir "src/main/libs" |
---|
| 16 | + } |
---|
| 17 | + |
---|
| 18 | + signingConfigs { |
---|
| 19 | + platformkeystore { |
---|
| 20 | + keyAlias "platform" |
---|
| 21 | + keyPassword "android" |
---|
| 22 | + storeFile file('../app/keystore/platform.jks') |
---|
| 23 | + storePassword "android" |
---|
| 24 | + } |
---|
| 25 | + } |
---|
| 26 | + |
---|
13 | 27 | buildTypes { |
---|
| 28 | + debug { |
---|
| 29 | + signingConfig signingConfigs.platformkeystore |
---|
| 30 | + } |
---|
14 | 31 | release { |
---|
| 32 | + signingConfig signingConfigs.platformkeystore |
---|
15 | 33 | minifyEnabled false |
---|
16 | 34 | proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' |
---|
17 | 35 | } |
---|
.. | .. |
---|
19 | 37 | } |
---|
20 | 38 | |
---|
21 | 39 | dependencies { |
---|
22 | | - compile 'com.android.support:support-v4:25.+' |
---|
23 | | - compile files('libs/spiritv1.3.jar') |
---|
| 40 | + implementation 'com.android.support:support-v4:25.+' |
---|
| 41 | + implementation files('libs/spiritv1.3.jar') |
---|
| 42 | + implementation files('libs/NodkaAPI.jar') |
---|
| 43 | +// compileOnly files('libs/classes-full-debug.jar') |
---|
24 | 44 | } |
---|