reestructure gradle config so modules can implement a base configuration

This commit is contained in:
Carlos Martinez
2020-02-02 10:54:43 -03:00
parent a12f70090e
commit e3cdc2af2b
14 changed files with 139 additions and 6 deletions

View File

@@ -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>

View File

@@ -0,0 +1,7 @@
package com.hako.friendlists
import android.app.Application
class MainApplication : Application() {
}

View File

@@ -0,0 +1,7 @@
package com.hako.friendlists.home
import androidx.appcompat.app.AppCompatActivity
class HomeActivity : AppCompatActivity() {
}

View File

@@ -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>