Skip to content
This repository has been archived by the owner on Mar 17, 2022. It is now read-only.

Commit

Permalink
Remove Android 2.2 support. Closes #138.
Browse files Browse the repository at this point in the history
  • Loading branch information
rmtheis committed Mar 26, 2016
1 parent 3ab6a35 commit 7b0e72e
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ The `tess-two-test` module contains instrumented unit tests for tess-two.

## Pre-requisites

* Android 2.2 or higher
* Android 2.3 or higher
* A v3.02+ [trained data file][tessdata] for a language. Data files must be
extracted to the Android device in a subdirectory named `tessdata`.

Expand Down
4 changes: 2 additions & 2 deletions eyes-two/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
android:versionName="1.0" >

<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="8" />
android:minSdkVersion="9"
android:targetSdkVersion="9" />

</manifest>
4 changes: 2 additions & 2 deletions eyes-two/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ android {
buildToolsVersion "23.0.2"

defaultConfig {
minSdkVersion 8
targetSdkVersion 8
minSdkVersion 9
targetSdkVersion 9
versionCode 1
versionName "1.0"
}
Expand Down
4 changes: 2 additions & 2 deletions tess-two/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
android:versionName="1.0" >

<uses-sdk
android:minSdkVersion="8"
android:minSdkVersion="9"
android:targetSdkVersion="22" />

</manifest>
</manifest>
4 changes: 2 additions & 2 deletions tess-two/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ android {
buildToolsVersion "23.0.2"

defaultConfig {
minSdkVersion 8
minSdkVersion 9
targetSdkVersion 22
versionCode 1
versionName "1.0"
Expand Down Expand Up @@ -130,4 +130,4 @@ bintray {
userOrg = user
publish = true
}
}
}
2 changes: 1 addition & 1 deletion tess-two/jni/Application.mk
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
APP_STL := gnustl_static
APP_ABI := armeabi armeabi-v7a x86 mips arm64-v8a x86_64 mips64
APP_OPTIM := release
APP_PLATFORM := android-8
APP_PLATFORM := android-9
APP_CPPFLAGS += -fexceptions -frtti
NDK_TOOLCHAIN_VERSION := clang

0 comments on commit 7b0e72e

Please sign in to comment.