- added about-screen - added TreeTile for Tile lookup, dropping that HashMap - using simple line-shader instead of std-derivatives one, about twice as faster here - use distance calculation from MapRenderer - removing TileScheduler - no need for MapGeneratorJob, pass MapTile directly to MapWorkers - added two-finger tap gestures for zoom-in/out - added tub/tron rendertheme - started caching for oscimap - add x/y coordinates to MapPosition, using it in MapRenderer - create tag hash when needed - no need for long tile coordinates max zoomlevel 31 should suffice
35 lines
1.3 KiB
XML
Executable File
35 lines
1.3 KiB
XML
Executable File
<?xml version="1.0" encoding="UTF-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="org.mapsforge.app"
|
|
android:installLocation="auto"
|
|
android:versionCode="10"
|
|
android:versionName="0.1" >
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
<uses-sdk
|
|
android:minSdkVersion="10"
|
|
android:targetSdkVersion="16" />
|
|
|
|
<application
|
|
android:icon="@drawable/globe2"
|
|
android:label="@string/application_name"
|
|
android:theme="@style/Theme.TileMap" >
|
|
<activity
|
|
android:name="org.mapsforge.app.TileMap"
|
|
android:configChanges="orientation|screenSize" >
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity android:name=".preferences.EditPreferences" />
|
|
<activity android:name=".filepicker.FilePicker" />
|
|
<activity android:name=".InfoView" android:theme="@android:style/Theme.NoTitleBar" />
|
|
</application>
|
|
|
|
</manifest> |