mirror of
https://github.com/imcarlost/Friendlists.git
synced 2026-04-10 02:46:54 -04:00
reestructure gradle config so modules can implement a base configuration
This commit is contained in:
@@ -2,10 +2,25 @@
|
||||
package="com.hako.friendlists">
|
||||
|
||||
<application
|
||||
android:name=".MainApplication"
|
||||
android:allowBackup="true"
|
||||
android:fullBackupContent="false"
|
||||
android:icon="@mipmap/ic_launcher"
|
||||
android:label="@string/app_name"
|
||||
android:roundIcon="@mipmap/ic_launcher_round"
|
||||
android:supportsRtl="true"
|
||||
android:theme="@style/AppTheme" />
|
||||
android:supportsRtl="false"
|
||||
android:theme="@style/AppTheme">
|
||||
|
||||
<activity
|
||||
android:name=".home.HomeActivity"
|
||||
android:screenOrientation="portrait">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<action android:name="android.intent.action.VIEW" />
|
||||
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
</application>
|
||||
</manifest>
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
package com.hako.friendlists
|
||||
|
||||
import android.app.Application
|
||||
|
||||
class MainApplication : Application() {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package com.hako.friendlists.home
|
||||
|
||||
import androidx.appcompat.app.AppCompatActivity
|
||||
|
||||
class HomeActivity : AppCompatActivity() {
|
||||
|
||||
}
|
||||
@@ -1,6 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<color name="colorPrimary">#008577</color>
|
||||
<color name="colorPrimaryDark">#00574B</color>
|
||||
<color name="colorAccent">#D81B60</color>
|
||||
<color name="colorPrimary">#37474F</color>
|
||||
<color name="colorPrimaryDark">#324047</color>
|
||||
<color name="colorAccent">#CBCFD1</color>
|
||||
<color name="colorRed">#D32F2F</color>
|
||||
</resources>
|
||||
|
||||
Reference in New Issue
Block a user