bug fix for In/Out pointer Attach Effect on empty track/location - Andrew+Anon
[goodguy/cinelerra.git] / CineRmt / app / build.gradle
1 apply plugin: 'com.android.application'
2
3 android {
4     signingConfigs {
5         cinermt {
6             keyAlias 'good_guy'
7             keyPassword 'good_guy'
8             storeFile file('/root/android-keystore')
9             storePassword 'debug-cooter'
10         }
11     }
12     compileSdkVersion 27
13     defaultConfig {
14         applicationId "com.local.cinermt"
15         minSdkVersion 14
16         targetSdkVersion 27
17         versionCode 1
18         versionName "1.0"
19         testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
20     }
21     buildTypes {
22         release {
23             minifyEnabled false
24             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
25             signingConfig signingConfigs.cinermt
26         }
27     }
28 }
29
30 dependencies {
31     implementation fileTree(include: ['*.jar'], dir: 'libs')
32     implementation 'com.android.support:appcompat-v7:27.1.1'
33     implementation 'com.android.support.constraint:constraint-layout:1.1.3'
34     testImplementation 'junit:junit:4.12'
35     androidTestImplementation 'com.android.support.test:runner:1.0.2'
36     androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
37 }