bugfix release for OpenWNN

This commit is contained in:
David Black 2013-08-10 21:07:12 +01:00
parent fcffef2ec8
commit ee61f82b56
2 changed files with 46 additions and 3 deletions

View file

@ -17,7 +17,7 @@ on resources that are not in the Android SDK.
Repo Type:git
Repo:https://android.googlesource.com/platform/packages/inputmethods/OpenWnn/
Build Version:1.3.5,1,android-4.0.4_r2.1,\
Build Version:1.3.5,1,!buggy at android-4.0.4_r2.1,\
target=android-14,\
prebuild=sed -i -e '18 s/>//g' -e '19 a android:versionCode="1"\nandroid:versionName="1.3.5">' \
AndroidManifest.xml && \
@ -25,6 +25,11 @@ prebuild=sed -i -e '18 s/>//g' -e '19 a android:versionCode="1"\nandroid:version
AndroidManifest.xml,\
build=$$NDK$$/ndk-build APP_BUILD_SCRIPT=Android.mk
Build Version:1.3.5.1,2,android-4.0.4_r2.1,\
target=android-14,\
patch=styles_2.patch,\
build=$$NDK$$/ndk-build APP_BUILD_SCRIPT=Android.mk
Build Version:1.3.6,136,!https://f-droid.org/forums/topic/opewnn-ics at android-4.1.2_r2,\
target=android-15,\
prebuild=sed -i ' 18 i android:versionCode="136"\nandroid:versionName="1.3.6"' \
@ -35,6 +40,6 @@ buildjni=libs
Auto Update Mode:None
Update Check Mode:Static
Current Version:1.3.5
Current Version Code:1
Current Version:1.3.5.1
Current Version Code:2

View file

@ -0,0 +1,38 @@
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 2ce1ae6..cd9032e 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -15,14 +15,18 @@
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="jp.co.omronsoft.openwnn">
+ package="jp.co.omronsoft.openwnn"
+android:versionCode="2"
+android:versionName="1.3.5.1">
<original-package android:name="jp.co.omronsoft.openwnn" />
+<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="14"/>
<uses-permission xmlns:android="http://schemas.android.com/apk/res/android" android:name="android.permission.VIBRATE"/>
<application android:label="OpenWnn">
<service android:name="OpenWnnJAJP" android:label="Japanese IME"
+ android:theme="@style/Theme"
android:permission="android.permission.BIND_INPUT_METHOD"
android:id="@+id/openwnn_japanese">
<intent-filter>
diff --git a/res/values/styles.xml b/res/values/styles.xml
new file mode 100644
index 0000000..26ba049
--- /dev/null
+++ b/res/values/styles.xml
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+ <style name="Theme" parent="@android:style/Theme.Holo">
+ <item name="android:windowActionBar">false</item>
+ <item name="android:windowNoTitle">false</item>
+ </style>
+</resources>
\ No newline at end of file