get android running in nix shell

This commit is contained in:
Loewy
2024-01-26 11:06:11 -08:00
parent 4c6bf597a9
commit 94d4f13a28
14 changed files with 70 additions and 12 deletions

View File

@@ -4,7 +4,7 @@
* <p>This source code is licensed under the MIT license found in the LICENSE file in the root
* directory of this source tree.
*/
package com.anonymous.DummyApp;
package android.railbird.app;
import android.content.Context;
import com.facebook.flipper.android.AndroidFlipperClient;

View File

@@ -1,4 +1,4 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="android.railbird.app">
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
@@ -26,6 +26,7 @@
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<data android:scheme="com.anonymous.DummyApp"/>
<data android:scheme="android.railbird.app"/>
</intent-filter>
</activity>
<activity android:name="com.facebook.react.devsupport.DevSettingsActivity" android:exported="false"/>

View File

@@ -1,4 +1,4 @@
package com.anonymous.DummyApp;
package android.railbird.app;
import android.os.Build;
import android.os.Bundle;

View File

@@ -1,4 +1,4 @@
package com.anonymous.DummyApp;
package android.railbird.app;
import android.app.Application;
import android.content.res.Configuration;

View File

@@ -1,5 +1,5 @@
<resources>
<string name="app_name">DummyApp</string>
<string name="app_name">Railbird</string>
<string name="expo_splash_screen_resize_mode" translatable="false">contain</string>
<string name="expo_splash_screen_status_bar_translucent" translatable="false">false</string>
</resources>

View File

@@ -4,7 +4,7 @@
* <p>This source code is licensed under the MIT license found in the LICENSE file in the root
* directory of this source tree.
*/
package com.anonymous.DummyApp;
package android.railbird.app;
import android.content.Context;
import com.facebook.react.ReactInstanceManager;