top of page
gradle

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.2.0'
    compile 'de.hdodenhof:circleimageview:1.2.1'
    compile 'com.android.support:recyclerview-v7:23.2.0'
}
 

styles.xlm



    <resources>

        <!-- Base application theme. -->
        <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">

            <item name="colorPrimary">@color/colorPrimary</item>
            <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
            <!-- Customize your theme here. -->
        </style>

    </resources>
 

strings.xml

<resources>
    <string name="app_name">Base One</string>
    <string name="action_settings">Settings</string>
    <string name="openDrawer">Open</string>
    <string name="closeDrawer">Close</string>
</resources>
 

colors.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <color name="colorPrimary">#2b9e37</color>
    <color name="colorPrimaryDark">#054502</color>
    <color name="colorAccent">#b7e26c</color>
    <color name="backgroundColor">#ffffff</color>
</resources>

 

bottom of page