An android app that shows amount of points remaining on French driving license. Make use of tesseract (an OCR) to bypass captcha on government website.
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.

33 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')
}