Merge commit '4e42229bdd980ab50da8b83b1aa1b0877b5a9ef6' as 'external/gainput'
24
external/gainput/extern/android/AndroidManifest.xml
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
|
||||
package="com.example.gainput.gainput">
|
||||
|
||||
<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=".BasicActivity"
|
||||
android:label="@string/app_name">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
</application>
|
||||
|
||||
</manifest>
|
||||
BIN
external/gainput/extern/android/res/mipmap-hdpi/ic_launcher.png
vendored
Normal file
|
After Width: | Height: | Size: 3.3 KiB |
BIN
external/gainput/extern/android/res/mipmap-hdpi/ic_launcher_round.png
vendored
Normal file
|
After Width: | Height: | Size: 4.1 KiB |
BIN
external/gainput/extern/android/res/mipmap-mdpi/ic_launcher.png
vendored
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
external/gainput/extern/android/res/mipmap-mdpi/ic_launcher_round.png
vendored
Normal file
|
After Width: | Height: | Size: 2.5 KiB |
BIN
external/gainput/extern/android/res/mipmap-xhdpi/ic_launcher.png
vendored
Normal file
|
After Width: | Height: | Size: 4.7 KiB |
BIN
external/gainput/extern/android/res/mipmap-xhdpi/ic_launcher_round.png
vendored
Normal file
|
After Width: | Height: | Size: 6.0 KiB |
BIN
external/gainput/extern/android/res/mipmap-xxhdpi/ic_launcher.png
vendored
Normal file
|
After Width: | Height: | Size: 7.5 KiB |
BIN
external/gainput/extern/android/res/mipmap-xxhdpi/ic_launcher_round.png
vendored
Normal file
|
After Width: | Height: | Size: 9.8 KiB |
BIN
external/gainput/extern/android/res/mipmap-xxxhdpi/ic_launcher.png
vendored
Normal file
|
After Width: | Height: | Size: 10 KiB |
BIN
external/gainput/extern/android/res/mipmap-xxxhdpi/ic_launcher_round.png
vendored
Normal file
|
After Width: | Height: | Size: 14 KiB |
6
external/gainput/extern/android/res/values/colors.xml
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<color name="colorPrimary">#3F51B5</color>
|
||||
<color name="colorPrimaryDark">#303F9F</color>
|
||||
<color name="colorAccent">#FF4081</color>
|
||||
</resources>
|
||||
3
external/gainput/extern/android/res/values/strings.xml
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
<resources>
|
||||
<string name="app_name">Gainput</string>
|
||||
</resources>
|
||||
11
external/gainput/extern/android/res/values/styles.xml
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
<resources>
|
||||
|
||||
<!-- Base application theme. -->
|
||||
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
|
||||
<!-- Customize your theme here. -->
|
||||
<item name="colorPrimary">@color/colorPrimary</item>
|
||||
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
|
||||
<item name="colorAccent">@color/colorAccent</item>
|
||||
</style>
|
||||
|
||||
</resources>
|
||||