forked from I2P_Developers/i2p.i2p
the code CWD is / but the only writable directory is /data/data/net.i2p.router/files/ - still a ton of places to be fixed, will be fixed up as things get working - Load some config files from resources at startup - Fix up logging - Add reseed capability, by copying some code over from routerconsole - Deal with conflicting bouncycastle libs
18 lines
725 B
XML
18 lines
725 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="net.i2p.router"
|
|
android:versionCode="1"
|
|
android:versionName="1.0.0">
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<application android:label="@string/app_name">
|
|
<activity android:name=".I2PAndroid"
|
|
android:label="@string/app_name"
|
|
android:launchMode="singleTask" >
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
</manifest>
|