1
0
Fork 0
mirror of https://github.com/ethauvin/android-about-box.git synced 2025-04-26 02:57:12 -07:00

Added AboutBox library source code. Implemented IAnalytic and IDialog interfaces for custom usage.

This commit is contained in:
Alex Dibrivnyi 2017-02-05 20:27:38 +02:00
parent 8a88eb2217
commit 8b28ebfb79
56 changed files with 1296 additions and 0 deletions

View file

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="colorAccent">#FF4081</color>
<color name="colorPrimary">#3F51B5</color>
<color name="colorPrimaryDark">#303F9F</color>
</resources>

View file

@ -0,0 +1,15 @@
<resources>
<string name="app_name">AboutBox</string>
<string name="leave_review">Leave Review</string>
<string name="contact_support">Contact Support</string>
<string name="try_other_apps">Try Other Apps</string>
<string name="version">Version</string>
<string name="facebook_label">Facebook</string>
<string name="twitter_label">Twitter</string>
<string name="web_label">Web</string>
<string name="acknowledgment">Acknowledgment</string>
<string name="privacy_policy">Privacy Policy</string>
<string name="about_screen_title">About</string>
<string name="share">Share</string>
</resources>

View file

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="AppTheme.MaterialAboutActivity" parent="Theme.Mal" >
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
</resources>