aboutsummaryrefslogtreecommitdiff
path: root/nextword/build.gradle
blob: 9521fc7c7e5bc838bce9ca7310b969cb7fa4cbbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
apply plugin: 'com.android.library'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.2"

    defaultConfig {
        minSdkVersion 7
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
        ndk {
            moduleName "anysoftkey_next_word_jni"
        }
    }
}

dependencies {
    repositories {
        mavenCentral()
        maven { url "https://jitpack.io" }
    }
    compile 'com.github.AnySoftKeyboard:AnySoftKeyboard-API:-SNAPSHOT'
    compile project(':base')
}