You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
820 B
32 lines
820 B
apply plugin: 'com.android.application' |
|
|
|
android { |
|
compileSdkVersion 19 |
|
buildToolsVersion '21.1.2' |
|
defaultConfig { |
|
applicationId "fr.android.pointspermis" |
|
minSdkVersion 14 |
|
targetSdkVersion 19 |
|
versionCode 1 |
|
versionName "1.0" |
|
} |
|
buildTypes { |
|
release { |
|
minifyEnabled false |
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' |
|
} |
|
} |
|
compileOptions { |
|
sourceCompatibility JavaVersion.VERSION_1_7 |
|
targetCompatibility JavaVersion.VERSION_1_7 |
|
} |
|
productFlavors { |
|
} |
|
} |
|
|
|
dependencies { |
|
compile fileTree(include: ['*.jar'], dir: 'libs') |
|
compile 'com.android.support:support-v4:21.0.3' |
|
compile project(':tesseract') |
|
compile files('libs/jsoup-1.8.1.jar') |
|
}
|
|
|