Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
Mobile App
Manage
Activity
Members
Labels
Plan
Issues
3
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Code
Mobile App
Merge requests
!1
Mobile app initial implementation.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Mobile app initial implementation.
3-android-mobile-app-web-view
into
master
Overview
0
Commits
37
Pipelines
0
Changes
86
Merged
Igor Markin
requested to merge
3-android-mobile-app-web-view
into
master
5 years ago
Overview
0
Commits
37
Pipelines
0
Changes
4
Expand
Closes
#3 (closed)
0
0
Merge request reports
Viewing commit
fc04c400
Prev
Next
Show latest version
4 files
+
19
−
16
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
fc04c400
Update name and colors
· fc04c400
igorwork
authored
5 years ago
android/app/src/main/AndroidManifest.xml
0 → 100644
+
67
−
0
Options
<manifest
xmlns:android=
"http://schemas.android.com/apk/res/android"
xmlns:tools=
"http://schemas.android.com/tools"
package=
"com.vereign.app"
>
<uses-permission
android:name=
"android.permission.INTERNET"
/>
<!-- io.flutter.app.FlutterApplication is an android.app.Application that
calls FlutterMain.startInitialization(this); in its onCreate method.
In most cases you can leave this as-is, but you if you want to provide
additional functionality it is fine to subclass or reimplement
FlutterApplication and put your custom class here. -->
<application
android:name=
"io.flutter.app.FlutterApplication"
android:label=
"${appLabel}"
android:icon=
"@mipmap/ic_launcher"
>
<activity
android:name=
".MainActivity"
android:launchMode=
"singleTask"
android:theme=
"@style/LaunchTheme"
android:configChanges=
"orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
android:hardwareAccelerated=
"true"
android:windowSoftInputMode=
"adjustResize"
>
<!-- This keeps the window background of the activity showing
until Flutter renders its first frame. It can be removed if
there is no splash screen (such as the default splash screen
defined in @style/LaunchTheme). -->
<meta-data
android:name=
"io.flutter.app.android.SplashScreenUntilFirstFrame"
android:value=
"true"
/>
<intent-filter>
<action
android:name=
"android.intent.action.MAIN"
/>
<category
android:name=
"android.intent.category.LAUNCHER"
/>
</intent-filter>
<intent-filter>
<action
android:name=
"android.intent.action.VIEW"
/>
<category
android:name=
"android.intent.category.DEFAULT"
/>
<category
android:name=
"android.intent.category.LAUNCHER"
/>
<data
android:scheme=
"app"
android:host=
"com.vereign.app"
/>
</intent-filter>
</activity>
<activity
android:name=
"net.openid.appauth.RedirectUriReceiverActivity"
tools:node=
"replace"
>
<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=
"app"
android:host=
"com.vereign.app"
android:path=
"/oauth2"
/>
</intent-filter>
</activity>
<activity
android:name=
"github.showang.flutterappauthwrapper.OAuthActivity"
android:configChanges=
"orientation|screenSize"
android:theme=
"@style/Theme.AppCompat.Translucent"
/>
</application>
</manifest>
Loading