mirror of
https://github.com/caperren/school_archives.git
synced 2025-11-09 13:41:13 +00:00
36 lines
1.5 KiB
XML
36 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.example.corwinperren.httpoauth">
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/AppTheme">
|
|
<activity android:name=".MainActivity">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity android:name="net.openid.appauth.RedirectUriReceiverActivity">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.VIEW"/>
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
<category android:name="android.intent.category.BROWSABLE"/>
|
|
<data android:scheme="com.example.corwinperren.httpoauth" android:host="oauth"/>
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity android:name=".ShowPostsActivity"></activity>
|
|
<activity android:name=".SubmitPostActivity"></activity>
|
|
<activity android:name=".GoogleAuthCompleteActivity"></activity>
|
|
|
|
</application>
|
|
|
|
</manifest> |