Skip to content

Commit

Permalink
changing the animation color, updating watchlist icon, adding attribu…
Browse files Browse the repository at this point in the history
…tion.
  • Loading branch information
pranayairan committed Jan 13, 2019
1 parent eb00f26 commit 38d6aaf
Show file tree
Hide file tree
Showing 13 changed files with 67 additions and 35 deletions.
9 changes: 0 additions & 9 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -104,15 +104,6 @@ dependencies {
implementation "com.crashlytics.sdk.android:crashlytics:${versions.crashlytics}"
implementation "com.google.firebase:firebase-perf:${versions.firebasePerf}"

// implementation 'com.uber.autodispose:autodispose:1.1.0'
// implementation 'com.uber.autodispose:autodispose-android:1.1.0'
// implementation 'com.uber.autodispose:autodispose-android-archcomponents:1.1.0'
// implementation 'com.uber.autodispose:autodispose-ktx:1.1.0'
// implementation 'com.uber.autodispose:autodispose-android-ktx:1.1.0'
// implementation 'com.uber.autodispose:autodispose-android-archcomponents-ktx:1.1.0'
//
// implementation "android.arch.lifecycle:extensions:1.1.1"

}

kotlinter {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,14 @@ class CoinPositionCard(private val resourceProvider: ResourceProvider) : Module(

if (totalReturnAmount != null && totalReturnPercentage != null) {

// TODO based on gain or loss do color change
inflatedView.tvTotalReturnValue.text = resourceProvider.getString(R.string.amountWithChangePercentage,
formatter.formatAmount(totalReturnAmount.toPlainString(), currency), totalReturnPercentage)

if (totalReturnPercentage < BigDecimal.ZERO) {
inflatedView.tvTotalReturnValue.setTextColor(resourceProvider.getColor(R.color.colorLoss))
} else {
inflatedView.tvTotalReturnValue.setTextColor(resourceProvider.getColor(R.color.colorGain))
}
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ interface WatchedCoinDao {
@Insert(onConflict = OnConflictStrategy.REPLACE)
fun insertCoinListIntoWatchList(list: List<WatchedCoin>)

// TODO have an option to update coin list when app opens up or in search screen.
@Insert(onConflict = OnConflictStrategy.REPLACE)
fun insertCoinIntoWatchList(watchedCoin: WatchedCoin)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ class CoinFragment : Fragment(), CoinContract.View {

val toolBarDefaultElevation = dpToPx(context, 12) // default elevation of toolbar

// TODO revisit this
inflate.rvCoinDetails.addOnScrollListener(object : OnVerticalScrollListener() {
override fun onScrolled(offset: Int) {
super.onScrolled(offset)
Expand Down Expand Up @@ -142,9 +141,11 @@ class CoinFragment : Fragment(), CoinContract.View {
private fun changeCoinMenu(isCoinWatched: Boolean, isCoinPurchased: Boolean) {
if (!isCoinPurchased) {
if (isCoinWatched) {
watchedMenuItem?.icon = context?.getDrawable(R.drawable.ic_check_box_white_24dp)
watchedMenuItem?.icon = context?.getDrawable(R.drawable.ic_watching)
watchedMenuItem?.title = context?.getString(R.string.remove_to_watchlist)
} else {
watchedMenuItem?.icon = context?.getDrawable(R.drawable.ic_add_white_24dp)
watchedMenuItem?.icon = context?.getDrawable(R.drawable.ic_watch)
watchedMenuItem?.title = context?.getString(R.string.add_to_watchlist)
}
} else {
watchedMenuItem?.isVisible = false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,10 @@ class SettingsFragment : Fragment(), SettingsContract.View {

inflatedView.tvAppVersionValue.text = BuildConfig.VERSION_NAME

inflatedView.clAttribution.setOnClickListener {
openCustomTab(getString(R.string.attributionUrl), requireContext())
}

inflatedView.clCryptoCompare.setOnClickListener {
openCustomTab(getString(R.string.crypto_compare_url), requireContext())
}
Expand Down
9 changes: 0 additions & 9 deletions app/src/main/res/drawable/ic_add_white_24dp.xml

This file was deleted.

9 changes: 0 additions & 9 deletions app/src/main/res/drawable/ic_check_box_white_24dp.xml

This file was deleted.

14 changes: 14 additions & 0 deletions app/src/main/res/drawable/ic_watch.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="36dp"
android:height="24dp"
android:viewportWidth="98"
android:viewportHeight="62">

<path
android:fillColor="@color/primaryTextColor"
android:pathData="M49,62.035 c-26.167,0 -46.674,-27.814 -47.535,-28.999 L0,31.018 l1.465,-2.019 C2.326,27.814 22.833,0 49,0 c26.166,0 46.674,27.814 47.534,28.999 L98,31.018 l-1.466,2.019 C95.674,34.221 75.166,62.035 49,62.035 zM8.616,31.014 C13.669,37.151 30.117,55.166 49,55.166 c18.928,0 35.339,-18.006 40.386,-24.145 C84.331,24.883 67.885,6.869 49,6.869 C30.072,6.869 13.661,24.874 8.616,31.014 z" />
<path
android:fillColor="@color/primaryTextColor"
android:pathData="M 49 12.0209999084 C 59.4917532493 12.0209999084 67.9969997406 20.5262463998 67.9969997406 31.01799964904785 C 67.9969997406 41.5097528983 59.4917532493 50.0149993896 49 50.0149993896 C 38.5082467507 50.0149993896 30.0030002594 41.5097528983 30.0030002594 31.01799964904785 C 30.0030002594 20.5262463998 38.5082467507 12.0209999084 49 12.0209999084 Z" />
</vector>
12 changes: 12 additions & 0 deletions app/src/main/res/drawable/ic_watching.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="36dp"
android:height="24dp"
android:viewportWidth="17"
android:viewportHeight="11">

<path
android:fillColor="#ffffff"
android:fillType="evenOdd"
android:pathData="M17,5.5 C13.222221999999988,-1.8333333300000003 3.777777999999998,-1.8333333300000003 0,5.5 C3.777777999999998,12.8333333 13.222221999999988,12.8333333 17,5.5 zM8.5,9 C10.432997,9 12,7.432996599999999 12,5.5 C12,3.567003400000001 10.432997,2 8.5,2 C6.567003,2 5,3.567003400000001 5,5.5 C5,7.432996599999999 6.567003,9 8.5,9 zM8.5,4.7928932 L9.5,3.7928932 L10.207107000000008,4.5 L9.207107000000008,5.5 L10.207107000000008,6.5 L9.5,7.2071068 L8.5,6.2071068 L7.5,7.2071068 L6.792892999999992,6.5 L7.792892999999992,5.5 L6.792892999999992,4.5 L7.5,3.7928932 L8.5,4.7928932 z" />
</vector>
22 changes: 22 additions & 0 deletions app/src/main/res/layout/fragment_settings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,28 @@
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />

<android.support.constraint.ConstraintLayout
android:id="@+id/clAttribution"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="@dimen/generic8dp"
android:background="@drawable/background_rounded_all"
android:padding="@dimen/generic14dp"
android:stateListAnimator="@animator/card_down_animation">


<TextView
style="@style/CoinyText.Body1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/generic4dp"
android:text="@string/attribution"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />

</android.support.constraint.ConstraintLayout>

<android.support.constraint.ConstraintLayout
android:id="@+id/clCryptoCompare"
android:layout_width="match_parent"
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/menu/coin_details_menu.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<item
android:id="@+id/action_watch"
android:icon="@drawable/ic_add_white_24dp"
android:icon="@drawable/ic_watch"
android:orderInCategory="10"
android:title="@string/add_to_watchlist"
app:showAsAction="always" />
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/raw/graph.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"v":"4.12.0","fr":29.9700012207031,"ip":0,"op":133.000005417201,"w":800,"h":600,"nm":"Comp 1","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 4","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[842,60,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[36.602,38.32],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0.235,0.282,0.384,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-243.699,129.16],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0p667_1_0p333_0"],"t":94,"s":[0],"e":[100]},{"t":103.000004195276}],"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":87.0000035435826,"op":132.00000537647,"st":87.0000035435826,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Shape Layer 3","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[404,306,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-246,204],[-102,152],[-88,80],[4,50],[58,6],[94,-10],[114,-72],[188,-112]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.145,0.188,0.278,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":13,"ix":5},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":0,"k":0,"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0p667_1_0p333_0"],"t":69,"s":[0],"e":[100]},{"t":102.000004154545}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":69.0000028104276,"op":132.00000537647,"st":69.0000028104276,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"Shape Layer 2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[402,300,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[36.602,38.32],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0.235,0.282,0.384,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-243.699,129.16],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0p667_1_0p333_0"],"t":87,"s":[0],"e":[100]},{"t":96.0000039101602}],"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":87.0000035435826,"op":132.00000537647,"st":87.0000035435826,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"Shape Layer 1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":180.205,"ix":10},"p":{"a":0,"k":[432,348,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[502.227,401.75],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":0,"ix":4},"nm":"Rectangle Path 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"st","c":{"a":0,"k":[0.145,0.188,0.278,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":13,"ix":5},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[23.113,36.875],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Rectangle 1","np":3,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0p667_1_0p333_0"],"t":0,"s":[100],"e":[5]},{"t":104.000004236007}],"ix":1},"e":{"a":0,"k":100,"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":132.00000537647,"st":0,"bm":0}]}
{"v":"4.12.0","fr":29.9700012207031,"ip":0,"op":133.000005417201,"w":800,"h":600,"nm":"Comp 1","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 4","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[842,60,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[36.602,38.32],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0.235,0.282,0.384,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-243.699,129.16],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0p667_1_0p333_0"],"t":94,"s":[0],"e":[100]},{"t":103.000004195276}],"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":87.0000035435826,"op":132.00000537647,"st":87.0000035435826,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Shape Layer 3","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[404,306,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-246,204],[-102,152],[-88,80],[4,50],[58,6],[94,-10],[114,-72],[188,-112]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":13,"ix":5},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":0,"k":0,"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0p667_1_0p333_0"],"t":69,"s":[0],"e":[100]},{"t":102.000004154545}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":69.0000028104276,"op":132.00000537647,"st":69.0000028104276,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"Shape Layer 2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[402,300,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[36.602,38.32],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"Ellipse Path 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":0,"k":[0.235,0.282,0.384,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-243.699,129.16],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0p667_1_0p333_0"],"t":87,"s":[0],"e":[100]},{"t":96.0000039101602}],"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1","np":3,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":87.0000035435826,"op":132.00000537647,"st":87.0000035435826,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"Shape Layer 1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":180.205,"ix":10},"p":{"a":0,"k":[432,348,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[502.227,401.75],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":0,"ix":4},"nm":"Rectangle Path 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":13,"ix":5},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[23.113,36.875],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Rectangle 1","np":3,"cix":2,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0p667_1_0p333_0"],"t":0,"s":[100],"e":[5]},{"t":104.000004236007}],"ix":1},"e":{"a":0,"k":100,"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":132.00000537647,"st":0,"bm":0}]}
4 changes: 3 additions & 1 deletion app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@
<string name="your_total_balance">Your total balance</string>
<string name="_24h_changes">24h Changes</string>
<string name="add_to_watchlist">Add to watchlist</string>
<string name="remove_to_watchlist">Remove from watchlist</string>

<string name="coin_added_to_watchlist">Started Watching %1$s</string>
<string name="coin_removed_to_watchlist">Stopped Watching %1$s</string>
Expand All @@ -102,7 +103,7 @@
<string name="greater_than"><![CDATA[>]]></string>
<string name="app_version">App Version</string>
<string name="api_provider">Powered by</string>

<string name="attributionUrl">https://github.com/pranayairan/Coiny/blob/master/attribution.md</string>
<string name="privacyPolicyUrl">https://github.com/pranayairan/Coiny/blob/master/coiny_privacy_policy.md</string>
<string name="email_address">[email protected]</string>
<string name="feedback_coiny">Feedback for Coiny</string>
Expand Down Expand Up @@ -140,4 +141,5 @@
<string name="cdSecondExchange">Second Exchange</string>
<string name="cdThirdExchange">Third Exchange</string>
<string name="cdExchange">Exchange</string>
<string name="attribution">Attribution</string>
</resources>

0 comments on commit 38d6aaf

Please sign in to comment.