2016-02-15 19:35:24 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<!-- BEGIN_INCLUDE(manifest) -->
|
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
package="com.introlab.rtabmap"
|
2018-10-18 17:25:57 +00:00
|
|
|
android:versionCode="72"
|
2016-04-04 13:03:43 -04:00
|
|
|
android:versionName="@RTABMAP_VERSION@">
|
2016-02-15 19:35:24 -05:00
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
|
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
2017-01-26 16:46:24 -05:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
2017-09-21 20:59:45 -04:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
2018-10-23 14:35:14 -04:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
2017-09-21 20:59:45 -04:00
|
|
|
<uses-feature android:name="android.hardware.location.gps" />
|
2016-02-15 19:35:24 -05:00
|
|
|
<uses-feature android:glEsVersion="0x00020000" />
|
|
|
|
|
|
2020-04-22 15:05:07 -04:00
|
|
|
<!-- This is the platform API where depth16 support in android was introduced. -->
|
|
|
|
|
<uses-sdk android:minSdkVersion="@ANDROID_NATIVE_API_LEVEL@" />
|
2022-01-05 21:39:27 -05:00
|
|
|
|
|
|
|
|
<queries>
|
|
|
|
|
<package android:name="com.google.ar.core" />
|
|
|
|
|
<package android:name="com.huawei.ar.engine" />
|
|
|
|
|
</queries>
|
2016-02-15 19:35:24 -05:00
|
|
|
|
|
|
|
|
<!-- This .apk has no Java code itself, so set hasCode to false. -->
|
|
|
|
|
<application
|
|
|
|
|
android:label="@string/app_name"
|
2017-03-12 21:21:09 -04:00
|
|
|
android:icon="@drawable/ic_launcher"
|
|
|
|
|
android:debuggable="@ANDROID_DEBUGGABLE@">
|
2016-11-25 15:35:18 -05:00
|
|
|
|
2020-04-22 15:05:07 -04:00
|
|
|
<uses-library android:name="com.projecttango.libtango_device2" android:required="false" />
|
|
|
|
|
<meta-data android:name="com.google.ar.core" android:value="optional" />
|
|
|
|
|
<meta-data android:name="com.huawei.ar.engine" android:value="optional" />
|
2016-02-15 19:35:24 -05:00
|
|
|
|
|
|
|
|
<!-- Our activity is the built-in NativeActivity framework class.
|
|
|
|
|
This will take care of integrating with our NDK code. -->
|
|
|
|
|
<activity android:name="RTABMapActivity"
|
|
|
|
|
android:label="@string/app_name"
|
|
|
|
|
android:launchMode="singleTask"
|
2017-02-15 19:07:10 -05:00
|
|
|
android:screenOrientation="fullSensor"
|
2017-07-24 20:24:16 -04:00
|
|
|
android:configChanges="orientation|screenSize|keyboardHidden"
|
|
|
|
|
android:theme="@style/ThemeApp">
|
2016-02-15 19:35:24 -05:00
|
|
|
<!-- Tell NativeActivity the name of our .so -->
|
|
|
|
|
<meta-data android:name="android.app.lib_name"
|
|
|
|
|
android:value="NativeRTABMap" />
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
2022-01-05 21:39:27 -05:00
|
|
|
</intent-filter>
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.SEND" />
|
|
|
|
|
<action android:name="android.intent.action.SEND_MULTIPLE" />
|
|
|
|
|
<action android:name="android.intent.action.OPEN_DOCUMENT" />
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
|
<data android:mimeType="application/octet-stream" />
|
|
|
|
|
<data android:pathPattern=".*\.db" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
|
2016-02-15 19:35:24 -05:00
|
|
|
</activity>
|
2017-01-26 16:46:24 -05:00
|
|
|
|
2017-02-15 19:07:10 -05:00
|
|
|
<activity android:name="SettingsActivity" android:label="@string/settings" android:screenOrientation="fullSensor"/>
|
|
|
|
|
<activity android:name="SketchfabActivity" android:label="@string/sketchfab" android:screenOrientation="fullSensor"/>
|
2020-04-22 15:05:07 -04:00
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="com.google.ar.core.min_apk_version"
|
|
|
|
|
android:value="191106000" /> <!-- This activity is critical for installing ARCore when it is not already present. -->
|
|
|
|
|
<activity
|
|
|
|
|
android:name="com.google.ar.core.InstallActivity"
|
|
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize"
|
|
|
|
|
android:excludeFromRecents="true"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:launchMode="singleTop"
|
|
|
|
|
android:theme="@android:style/Theme.Material.Light.Dialog.Alert" />
|
|
|
|
|
|
|
|
|
|
<provider
|
|
|
|
|
android:name="android.support.v4.content.FileProvider"
|
|
|
|
|
android:authorities="com.introlab.rtabmap.provider"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:grantUriPermissions="true">
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
|
|
|
android:resource="@xml/provider_paths"/>
|
|
|
|
|
</provider>
|
2016-02-15 19:35:24 -05:00
|
|
|
</application>
|
|
|
|
|
|
|
|
|
|
</manifest>
|
|
|
|
|
<!-- END_INCLUDE(manifest) -->
|