rta: use callsites in AFor instead re-resolving stuff
[nit.git] / src / android_platform.nit
index 8971696..6dc34f8 100644 (file)
@@ -55,6 +55,8 @@ end
 class AndroidPlatform
        super Platform
 
+       redef fun supports_libunwind do return false
+
        redef fun toolchain(toolcontext) do return new AndroidToolchain(toolcontext)
 end
 
@@ -133,18 +135,22 @@ $(call import-module,android/native_app_glue)
         package="{{{app_package}}}"
         android:versionCode="1"
         android:versionName="{{{app_version}}}"
-       android:debuggable="true">
+        android:debuggable="true">
 
     <!-- This is the platform API where NativeActivity was introduced. -->
     <uses-sdk android:minSdkVersion="9" />
 
     <!-- This .apk has no Java code itself, so set hasCode to false. -->
-    <application android:label="@string/app_name" android:hasCode="false" android:debuggable="true">
+    <application
+               android:label="@string/app_name"
+               android:hasCode="false"
+               android:debuggable="true">
 
         <!-- Our activity is the built-in NativeActivity framework class.
              This will take care of integrating with our NDK code. -->
         <activity android:name="android.app.NativeActivity"
                 android:label="@string/app_name"
+                android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
                 android:configChanges="orientation|keyboardHidden"
                 android:screenOrientation="portrait">
             <!-- Tell NativeActivity the name of or .so -->