Enable CORS in all environments and disable HTTPS redirect in dev. Seed the database after migrations. Make the API base URL configurable, defaulting to the Android emulator host, and use per-config Android manifests.
11 lines
465 B
XML
11 lines
465 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="de.krampitz.slipitin">
|
|
<application
|
|
android:allowBackup="true"
|
|
android:icon="@mipmap/appicon"
|
|
android:supportsRtl="true"
|
|
android:label="Slip It In">
|
|
</application>
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
</manifest> |