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
19 lines
531 B
XML
19 lines
531 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
>
|
|
<TextView
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="Hello World, I2PAndroid"
|
|
/>
|
|
<ImageView
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:src="@drawable/i2plogo"
|
|
/>
|
|
</LinearLayout>
|
|
|