Update min API to 9 (Gingerbread).

API 8 (Froyo) is now less than 1% of active devices, and
these devices are generally too low-powered to run I2P effectively.
This allows us to move the remaining I2P jars to Java 6.
This commit is contained in:
zzz
2014-06-27 13:52:29 +00:00
parent 55509adda6
commit a034b78dfd
4 changed files with 6 additions and 6 deletions

View File

@ -2,13 +2,13 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.i2p.android.router"
android:versionCode="0"
android:versionName="0.0.0-0_b0-API8"
android:versionName="0.0.0-0_b0-API9"
android:installLocation="auto"
>
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-sdk android:minSdkVersion="8"
<uses-sdk android:minSdkVersion="9"
android:targetSdkVersion="19" />
<application android:label="@string/app_name"

View File

@ -34,7 +34,7 @@ Instructions:
# target in project.properties from android-19 to andriod-x
# where x is the API version.
# I2P is configured to run on 2.2 (API 8) or higher using the
# I2P is configured to run on 2.3 (API 9) or higher using the
# Android Support Library, so download that as well
# (it's under "Extras").

View File

@ -10,7 +10,7 @@
# Project target.
target=android-19
# Must match that in AndroidManifest.xml.in
minSdkVersion=8
minSdkVersion=9
# I2P router libs
android.library.reference.1=./routerjars
# Android Support Library

View File

@ -2,10 +2,10 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.i2p.android.router"
android:versionCode="0"
android:versionName="0.0.0-0_b0-API8"
android:versionName="0.0.0-0_b0-API9"
android:installLocation="auto"
>
<uses-sdk android:minSdkVersion="8" />
<uses-sdk android:minSdkVersion="9" />
</manifest>