I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit a034b78d authored by zzz's avatar zzz
Browse files

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.
parent 55509add
No related branches found
No related tags found
No related merge requests found
...@@ -2,13 +2,13 @@ ...@@ -2,13 +2,13 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.i2p.android.router" package="net.i2p.android.router"
android:versionCode="0" android:versionCode="0"
android:versionName="0.0.0-0_b0-API8" android:versionName="0.0.0-0_b0-API9"
android:installLocation="auto" android:installLocation="auto"
> >
<uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-sdk android:minSdkVersion="8" <uses-sdk android:minSdkVersion="9"
android:targetSdkVersion="19" /> android:targetSdkVersion="19" />
<application android:label="@string/app_name" <application android:label="@string/app_name"
......
...@@ -34,7 +34,7 @@ Instructions: ...@@ -34,7 +34,7 @@ Instructions:
# target in project.properties from android-19 to andriod-x # target in project.properties from android-19 to andriod-x
# where x is the API version. # 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 # Android Support Library, so download that as well
# (it's under "Extras"). # (it's under "Extras").
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
# Project target. # Project target.
target=android-19 target=android-19
# Must match that in AndroidManifest.xml.in # Must match that in AndroidManifest.xml.in
minSdkVersion=8 minSdkVersion=9
# I2P router libs # I2P router libs
android.library.reference.1=./routerjars android.library.reference.1=./routerjars
# Android Support Library # Android Support Library
......
...@@ -2,10 +2,10 @@ ...@@ -2,10 +2,10 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="net.i2p.android.router" package="net.i2p.android.router"
android:versionCode="0" android:versionCode="0"
android:versionName="0.0.0-0_b0-API8" android:versionName="0.0.0-0_b0-API9"
android:installLocation="auto" android:installLocation="auto"
> >
<uses-sdk android:minSdkVersion="8" /> <uses-sdk android:minSdkVersion="9" />
</manifest> </manifest>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment