File: build.gradle

package info (click to toggle)
libjuniversalchardet-java 2.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,060 kB
  • sloc: java: 6,222; xml: 313; makefile: 2
file content (45 lines) | stat: -rw-r--r-- 847 bytes parent folder | download
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
plugins {
    id ('com.android.library') version "8.2.0"
}

repositories {
    mavenCentral()
    google()
}

dependencies {
    testImplementation 'junit:junit:4.13.2'
    testImplementation 'commons-codec:commons-codec:1.13'
}


sourceSets {
    main {
        java {
            exclude 'src/main/java/module-info.java'
            exclude 'module-info.java'
        }
    }
}


android {
    namespace "com.github.albfernandez.juniversalchardet"
    compileSdkVersion 26
    compileSdk 26
    defaultConfig {
        minSdkVersion 26   
        targetSdkVersion 26
        compileSdk 26
        versionCode 1
        versionName "1.0"
    }
    compileOptions {
        sourceCompatibility  JavaVersion.VERSION_1_7
        targetCompatibility  JavaVersion.VERSION_1_7
    }
    lintOptions {
        disable 'ExpiredTargetSdkVersion'
    }
}