build.gradle 1.0 KB
Newer Older
T
Takeya Yuki 已提交
1 2 3 4
apply plugin: 'com.android.application'

android {
    compileSdkVersion 26
T
Fix  
Takeya Yuki 已提交
5
    buildToolsVersion "26.0.1"
T
Takeya Yuki 已提交
6 7
    defaultConfig {
        applicationId "jp.ruby.rubylibrary"
T
Takeya Yuki 已提交
8
        minSdkVersion 21
T
Takeya Yuki 已提交
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
        targetSdkVersion 26
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
T
Takeya Yuki 已提交
27
    compile project(':rubylib')
T
Takeya Yuki 已提交
28
    compile 'com.android.support:appcompat-v7:26.+'
T
Takeya Yuki 已提交
29
    compile 'com.android.support.constraint:constraint-layout:1.0.2'
T
Takeya Yuki 已提交
30
    testCompile 'junit:junit:4.12'
T
Takeya Yuki 已提交
31 32 33
    compile project(':webviewex')
    compile project(':ajaxlib')
    compile project(':pm')
T
Takeya Yuki 已提交
34
}