Skip to content

Commit

Permalink
reformat the code
Browse files Browse the repository at this point in the history
  • Loading branch information
medyo committed Mar 12, 2018
1 parent 3430cfd commit 4d99a10
Show file tree
Hide file tree
Showing 19 changed files with 119 additions and 57 deletions.
1 change: 0 additions & 1 deletion app/src/main/res/layout/activity_main.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<resources>
<string name="app_name" translatable="false" >Android About Page</string>
<string name="copy_right" translatable="false" >Copyrights © %1$d</string>
<string name="app_name" translatable="false">Android About Page</string>
<string name="copy_right" translatable="false">Copyrights © %1$d</string>
</resources>
6 changes: 3 additions & 3 deletions bintrayUpload.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ apply plugin: 'com.jfrog.bintray'
// load properties
Properties properties = new Properties()
File localPropertiesFile = project.file("local.properties");
if(localPropertiesFile.exists()){
if (localPropertiesFile.exists()) {
properties.load(localPropertiesFile.newDataInputStream())
}
File projectPropertiesFile = project.file("project.properties");
if(projectPropertiesFile.exists()){
if (projectPropertiesFile.exists()) {
properties.load(projectPropertiesFile.newDataInputStream())
}

Expand Down Expand Up @@ -96,7 +96,7 @@ artifacts {

// javadoc configuration
javadoc {
options{
options {
encoding "UTF-8"
charSet 'UTF-8'
author true
Expand Down
4 changes: 0 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,17 +1,13 @@
# Project-wide Gradle settings.

# IDE (e.g. Android Studio) users:
# Gradle settings configured through the IDE *will override*
# any settings specified in this file.

# For more details on how to configure your build environment visit
# http://www.gradle.org/docs/current/userguide/build_environment.html

# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
# Default value: -Xmx10248m -XX:MaxPermSize=256m
# org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8

# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
Expand Down
6 changes: 3 additions & 3 deletions library/build.gradle
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
apply plugin: 'com.android.library'

android {
compileSdkVersion 27
compileSdkVersion 27

defaultConfig {
minSdkVersion 15
targetSdkVersion 27
minSdkVersion 15
targetSdkVersion 27
versionCode 15
versionName "1.2.3"
vectorDrawables.useSupportLibrary = true
Expand Down
2 changes: 1 addition & 1 deletion library/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<manifest package="mehdi.sakout.aboutpage"/>
<manifest package="mehdi.sakout.aboutpage" />
36 changes: 27 additions & 9 deletions library/src/main/java/mehdi/sakout/aboutpage/Element.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,9 @@ public Element(String title, Integer iconDrawable) {

/**
* Get the onClickListener for this Element
* @see android.view.View.OnClickListener
*
* @return
* @see android.view.View.OnClickListener
*/
public View.OnClickListener getOnClickListener() {
return onClickListener;
Expand All @@ -47,9 +48,10 @@ public View.OnClickListener getOnClickListener() {
* Set the onClickListener for this Element. It will be invoked when this particular element
* is clicked on the AboutPage. This method has higher priority than
* {@link Element#setIntent(android.content.Intent)} when both methods are used
* @see android.view.View.OnClickListener
*
* @param onClickListener
* @return this Element instance for builder pattern support
* @see android.view.View.OnClickListener
*/
public Element setOnClickListener(View.OnClickListener onClickListener) {
this.onClickListener = onClickListener;
Expand All @@ -58,6 +60,7 @@ public Element setOnClickListener(View.OnClickListener onClickListener) {

/**
* Get the gravity of the content of this Element
*
* @return See {@link android.view.Gravity}
*/
public Integer getGravity() {
Expand All @@ -66,6 +69,7 @@ public Integer getGravity() {

/**
* Set the Gravity of the content for this Element
*
* @param gravity See {@link android.view.Gravity}
* @return this Element instance for builder pattern support
*/
Expand All @@ -77,12 +81,14 @@ public Element setGravity(Integer gravity) {
/**
* @return the title for this Element
*/
@Nullable public String getTitle() {
@Nullable
public String getTitle() {
return title;
}

/**
* Set the title for this Element
*
* @param title the string value to set
* @return this Element instance for builder pattern support
*/
Expand All @@ -94,15 +100,19 @@ public Element setTitle(String title) {
/**
* Get the icon drawable for this Element that appears to the left of the title or to the
* right of the title in RTL layout mode.
*
* @return the icon drawable resource of this Element
*/
@DrawableRes @Nullable public Integer getIconDrawable() {
@DrawableRes
@Nullable
public Integer getIconDrawable() {
return iconDrawable;
}

/**
* Set the icon drawable for this Element that appears to the left of the title or to the
* right of the title in RTL layout mode.
*
* @param iconDrawable the icon drawable resource to set
* @return this Element instance for builder pattern support
*/
Expand All @@ -114,12 +124,15 @@ public Element setIconDrawable(@DrawableRes Integer iconDrawable) {
/**
* @return the color resource identifier for this Elements icon
*/
@ColorRes @Nullable public Integer getIconTint() {
@ColorRes
@Nullable
public Integer getIconTint() {
return colorDay;
}

/**
* Set the color resource identifier for this Elements icon
*
* @param color the color resource identifier to use for this Element
* @return this Element instance for builder pattern support
*/
Expand All @@ -130,16 +143,19 @@ public Element setIconTint(@ColorRes Integer color) {

/**
* Get the color resource identifier for this Elements icon when in night mode
* @see AppCompatDelegate#setDefaultNightMode(int)
*
* @return
* @see AppCompatDelegate#setDefaultNightMode(int)
*/
@ColorRes public Integer getIconNightTint() {
@ColorRes
public Integer getIconNightTint() {
return colorNight;
}

/**
* Set the icon tint to be used for this Elements icon when in night mode. If no color
* is specified the accent color of the current theme will be used in night mode.
*
* @param colorNight
* @return
*/
Expand All @@ -159,8 +175,9 @@ public Element setValue(String value) {

/**
* Get the intent to be used for when this Element
* @see Element#setIntent(android.content.Intent)
*
* @return
* @see Element#setIntent(android.content.Intent)
*/
public Intent getIntent() {
return intent;
Expand All @@ -172,9 +189,10 @@ public Intent getIntent() {
* is clicked. This method has lower priority than
* {@link mehdi.sakout.aboutpage.Element#setOnClickListener(android.view.View.OnClickListener)}
* when both are used.
* @see android.content.Intent
*
* @param intent the intent to be used
* @return this Element instance for builder pattern support
* @see android.content.Intent
*/
public Element setIntent(Intent intent) {
this.intent = intent;
Expand Down
15 changes: 11 additions & 4 deletions library/src/main/res/drawable/about_icon_email.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
<vector android:height="24dp" android:viewportHeight="511.626"
android:viewportWidth="511.626" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:pathData="M49.1,178.7c6.5,4.6 26,18.1 58.5,40.7c32.5,22.6 57.5,39.9 74.8,52.1c1.9,1.3 5.9,4.2 12.1,8.7c6.2,4.5 11.3,8.1 15.4,10.9c4.1,2.8 9,5.9 14.8,9.3c5.8,3.4 11.3,6 16.4,7.7c5.1,1.7 9.9,2.6 14.3,2.6h0.3h0.3c4.4,0 9.1,-0.9 14.3,-2.6c5.1,-1.7 10.6,-4.3 16.4,-7.7c5.8,-3.4 10.8,-6.5 14.8,-9.3c4.1,-2.8 9.2,-6.4 15.4,-10.9c6.2,-4.5 10.2,-7.4 12.1,-8.7c17.5,-12.2 62.1,-43.1 133.6,-92.8c13.9,-9.7 25.5,-21.4 34.8,-35.1c9.3,-13.7 14,-28.1 14,-43.1c0,-12.6 -4.5,-23.3 -13.6,-32.3c-9,-8.9 -19.7,-13.4 -32.1,-13.4H45.7c-14.7,0 -25.9,4.9 -33.8,14.8C3.9,79.6 0,91.9 0,106.8c0,12 5.2,25 15.7,39C26.2,159.7 37.3,170.7 49.1,178.7z"/>
<path android:fillColor="#FF000000" android:pathData="M483.1,209.3c-62.4,42.3 -109.8,75.1 -142.2,98.5c-10.8,8 -19.6,14.2 -26.4,18.7c-6.8,4.5 -15.7,9 -27,13.7c-11.2,4.7 -21.7,7 -31.4,7h-0.3h-0.3c-9.7,0 -20.2,-2.3 -31.4,-7c-11.2,-4.7 -20.2,-9.2 -27,-13.7c-6.8,-4.5 -15.6,-10.7 -26.4,-18.7c-25.7,-18.8 -73,-51.7 -141.9,-98.5C18,202 8.4,193.8 0,184.4v226.7c0,12.6 4.5,23.3 13.4,32.3c8.9,8.9 19.7,13.4 32.3,13.4h420.3c12.6,0 23.3,-4.5 32.3,-13.4c8.9,-8.9 13.4,-19.7 13.4,-32.3V184.4C503.4,193.6 493.9,201.9 483.1,209.3z"/>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportHeight="511.626"
android:viewportWidth="511.626">
<path
android:fillColor="#FF000000"
android:pathData="M49.1,178.7c6.5,4.6 26,18.1 58.5,40.7c32.5,22.6 57.5,39.9 74.8,52.1c1.9,1.3 5.9,4.2 12.1,8.7c6.2,4.5 11.3,8.1 15.4,10.9c4.1,2.8 9,5.9 14.8,9.3c5.8,3.4 11.3,6 16.4,7.7c5.1,1.7 9.9,2.6 14.3,2.6h0.3h0.3c4.4,0 9.1,-0.9 14.3,-2.6c5.1,-1.7 10.6,-4.3 16.4,-7.7c5.8,-3.4 10.8,-6.5 14.8,-9.3c4.1,-2.8 9.2,-6.4 15.4,-10.9c6.2,-4.5 10.2,-7.4 12.1,-8.7c17.5,-12.2 62.1,-43.1 133.6,-92.8c13.9,-9.7 25.5,-21.4 34.8,-35.1c9.3,-13.7 14,-28.1 14,-43.1c0,-12.6 -4.5,-23.3 -13.6,-32.3c-9,-8.9 -19.7,-13.4 -32.1,-13.4H45.7c-14.7,0 -25.9,4.9 -33.8,14.8C3.9,79.6 0,91.9 0,106.8c0,12 5.2,25 15.7,39C26.2,159.7 37.3,170.7 49.1,178.7z" />
<path
android:fillColor="#FF000000"
android:pathData="M483.1,209.3c-62.4,42.3 -109.8,75.1 -142.2,98.5c-10.8,8 -19.6,14.2 -26.4,18.7c-6.8,4.5 -15.7,9 -27,13.7c-11.2,4.7 -21.7,7 -31.4,7h-0.3h-0.3c-9.7,0 -20.2,-2.3 -31.4,-7c-11.2,-4.7 -20.2,-9.2 -27,-13.7c-6.8,-4.5 -15.6,-10.7 -26.4,-18.7c-25.7,-18.8 -73,-51.7 -141.9,-98.5C18,202 8.4,193.8 0,184.4v226.7c0,12.6 4.5,23.3 13.4,32.3c8.9,8.9 19.7,13.4 32.3,13.4h420.3c12.6,0 23.3,-4.5 32.3,-13.4c8.9,-8.9 13.4,-19.7 13.4,-32.3V184.4C503.4,193.6 493.9,201.9 483.1,209.3z" />
</vector>
11 changes: 8 additions & 3 deletions library/src/main/res/drawable/about_icon_facebook.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
<vector android:height="24dp" android:viewportHeight="90.0"
android:viewportWidth="90.0" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#000000" android:pathData="M90,15C90,7.12 82.88,0 75,0H15C7.12,0 0,7.12 0,15v60C0,82.88 7.12,90 15,90H45V56H34V41h11v-5.84C45,25.08 52.57,16 61.88,16H74v15H61.88C60.55,31 59,32.61 59,35.02V41h15v15H59v34h16c7.88,0 15,-7.12 15,-15V15z"/>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportHeight="90.0"
android:viewportWidth="90.0">
<path
android:fillColor="#000000"
android:pathData="M90,15C90,7.12 82.88,0 75,0H15C7.12,0 0,7.12 0,15v60C0,82.88 7.12,90 15,90H45V56H34V41h11v-5.84C45,25.08 52.57,16 61.88,16H74v15H61.88C60.55,31 59,32.61 59,35.02V41h15v15H59v34h16c7.88,0 15,-7.12 15,-15V15z" />
</vector>
10 changes: 6 additions & 4 deletions library/src/main/res/drawable/about_icon_github.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
<!-- drawable/github_circle.xml -->
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:height="24dp"
android:width="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path android:fillColor="#000" android:pathData="M12,2A10,10 0 0,0 2,12C2,16.42 4.87,20.17 8.84,21.5C9.34,21.58 9.5,21.27 9.5,21C9.5,20.77 9.5,20.14 9.5,19.31C6.73,19.91 6.14,17.97 6.14,17.97C5.68,16.81 5.03,16.5 5.03,16.5C4.12,15.88 5.1,15.9 5.1,15.9C6.1,15.97 6.63,16.93 6.63,16.93C7.5,18.45 8.97,18 9.54,17.76C9.63,17.11 9.89,16.67 10.17,16.42C7.95,16.17 5.62,15.31 5.62,11.5C5.62,10.39 6,9.5 6.65,8.79C6.55,8.54 6.2,7.5 6.75,6.15C6.75,6.15 7.59,5.88 9.5,7.17C10.29,6.95 11.15,6.84 12,6.84C12.85,6.84 13.71,6.95 14.5,7.17C16.41,5.88 17.25,6.15 17.25,6.15C17.8,7.5 17.45,8.54 17.35,8.79C18,9.5 18.38,10.39 18.38,11.5C18.38,15.32 16.04,16.16 13.81,16.41C14.17,16.72 14.5,17.33 14.5,18.26C14.5,19.6 14.5,20.68 14.5,21C14.5,21.27 14.66,21.59 15.17,21.5C19.14,20.16 22,16.42 22,12A10,10 0 0,0 12,2Z" />
android:height="24dp"
android:viewportHeight="24"
android:viewportWidth="24">
<path
android:fillColor="#000"
android:pathData="M12,2A10,10 0 0,0 2,12C2,16.42 4.87,20.17 8.84,21.5C9.34,21.58 9.5,21.27 9.5,21C9.5,20.77 9.5,20.14 9.5,19.31C6.73,19.91 6.14,17.97 6.14,17.97C5.68,16.81 5.03,16.5 5.03,16.5C4.12,15.88 5.1,15.9 5.1,15.9C6.1,15.97 6.63,16.93 6.63,16.93C7.5,18.45 8.97,18 9.54,17.76C9.63,17.11 9.89,16.67 10.17,16.42C7.95,16.17 5.62,15.31 5.62,11.5C5.62,10.39 6,9.5 6.65,8.79C6.55,8.54 6.2,7.5 6.75,6.15C6.75,6.15 7.59,5.88 9.5,7.17C10.29,6.95 11.15,6.84 12,6.84C12.85,6.84 13.71,6.95 14.5,7.17C16.41,5.88 17.25,6.15 17.25,6.15C17.8,7.5 17.45,8.54 17.35,8.79C18,9.5 18.38,10.39 18.38,11.5C18.38,15.32 16.04,16.16 13.81,16.41C14.17,16.72 14.5,17.33 14.5,18.26C14.5,19.6 14.5,20.68 14.5,21C14.5,21.27 14.66,21.59 15.17,21.5C19.14,20.16 22,16.42 22,12A10,10 0 0,0 12,2Z" />
</vector>
11 changes: 8 additions & 3 deletions library/src/main/res/drawable/about_icon_google_play.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
<vector android:height="24dp" android:viewportHeight="210.0"
android:viewportWidth="210.0" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:pathData="M190.32,90.03L36.78,2.27C34.14,0.75 31.19,0 28.24,0c-0.06,0 -0.12,0.01 -0.18,0.01c-0.4,0 -0.79,0.02 -1.18,0.05c-0.18,0.01 -0.35,0.03 -0.53,0.05c-0.31,0.03 -0.62,0.08 -0.92,0.13c-0.11,0.02 -0.22,0.03 -0.33,0.05l0.01,0.01c-1.91,0.35 -3.78,1.03 -5.51,2.03c-5.31,3.08 -8.59,8.76 -8.59,14.9v175.53c0,6.14 3.27,11.82 8.59,14.9c1.73,1.01 3.6,1.68 5.51,2.04l-0,0.01c0.1,0.02 0.2,0.03 0.3,0.04c0.33,0.06 0.66,0.1 0.99,0.14c0.17,0.02 0.33,0.04 0.5,0.05c0.39,0.03 0.78,0.05 1.17,0.05c0.07,0 0.13,0.01 0.2,0.01c2.95,0 5.89,-0.75 8.54,-2.27L190.32,119.97c5.37,-3.07 8.68,-8.78 8.68,-14.96c0,0 0,-0 0,-0c0,0 0,-0 0,-0c0,0 0,-0 0,-0c0,0 0,-0 0,-0C199,98.81 195.69,93.1 190.32,90.03zM129.6,72.6l-15.27,20.03L75.5,41.67L129.6,72.6zM182.88,106.95l-107.38,61.38l67.23,-88.21l40.15,22.95c0.69,0.4 1.13,1.14 1.13,1.94C184,105.81 183.57,106.55 182.88,106.95z"/>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportHeight="210.0"
android:viewportWidth="210.0">
<path
android:fillColor="#FF000000"
android:pathData="M190.32,90.03L36.78,2.27C34.14,0.75 31.19,0 28.24,0c-0.06,0 -0.12,0.01 -0.18,0.01c-0.4,0 -0.79,0.02 -1.18,0.05c-0.18,0.01 -0.35,0.03 -0.53,0.05c-0.31,0.03 -0.62,0.08 -0.92,0.13c-0.11,0.02 -0.22,0.03 -0.33,0.05l0.01,0.01c-1.91,0.35 -3.78,1.03 -5.51,2.03c-5.31,3.08 -8.59,8.76 -8.59,14.9v175.53c0,6.14 3.27,11.82 8.59,14.9c1.73,1.01 3.6,1.68 5.51,2.04l-0,0.01c0.1,0.02 0.2,0.03 0.3,0.04c0.33,0.06 0.66,0.1 0.99,0.14c0.17,0.02 0.33,0.04 0.5,0.05c0.39,0.03 0.78,0.05 1.17,0.05c0.07,0 0.13,0.01 0.2,0.01c2.95,0 5.89,-0.75 8.54,-2.27L190.32,119.97c5.37,-3.07 8.68,-8.78 8.68,-14.96c0,0 0,-0 0,-0c0,0 0,-0 0,-0c0,0 0,-0 0,-0c0,0 0,-0 0,-0C199,98.81 195.69,93.1 190.32,90.03zM129.6,72.6l-15.27,20.03L75.5,41.67L129.6,72.6zM182.88,106.95l-107.38,61.38l67.23,-88.21l40.15,22.95c0.69,0.4 1.13,1.14 1.13,1.94C184,105.81 183.57,106.55 182.88,106.95z" />
</vector>
11 changes: 8 additions & 3 deletions library/src/main/res/drawable/about_icon_instagram.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
<vector android:height="24dp" android:viewportHeight="97.395"
android:viewportWidth="97.395" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:pathData="M12.5,0h72.39c6.88,0 12.5,5.09 12.5,12.5v72.39c0,7.41 -5.63,12.5 -12.5,12.5H12.5C5.62,97.39 0,92.31 0,84.89V12.5C0,5.09 5.62,0 12.5,0L12.5,0zM70.95,10.82c-2.41,0 -4.38,1.97 -4.38,4.39v10.49c0,2.41 1.97,4.39 4.38,4.39h11.01c2.41,0 4.39,-1.97 4.39,-4.39V15.21c0,-2.41 -1.97,-4.39 -4.39,-4.39H70.95L70.95,10.82zM86.39,41.19h-8.57c0.81,2.65 1.25,5.45 1.25,8.35c0,16.2 -13.56,29.33 -30.27,29.33c-16.72,0 -30.27,-13.13 -30.27,-29.33c0,-2.9 0.44,-5.71 1.25,-8.35h-8.94v41.14c0,2.13 1.74,3.87 3.87,3.87h67.82c2.13,0 3.87,-1.74 3.87,-3.87V41.19H86.39zM48.79,29.53c-10.8,0 -19.56,8.48 -19.56,18.95c0,10.47 8.76,18.95 19.56,18.95c10.8,0 19.56,-8.48 19.56,-18.95C68.35,38.02 59.59,29.53 48.79,29.53z"/>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportHeight="97.395"
android:viewportWidth="97.395">
<path
android:fillColor="#FF000000"
android:pathData="M12.5,0h72.39c6.88,0 12.5,5.09 12.5,12.5v72.39c0,7.41 -5.63,12.5 -12.5,12.5H12.5C5.62,97.39 0,92.31 0,84.89V12.5C0,5.09 5.62,0 12.5,0L12.5,0zM70.95,10.82c-2.41,0 -4.38,1.97 -4.38,4.39v10.49c0,2.41 1.97,4.39 4.38,4.39h11.01c2.41,0 4.39,-1.97 4.39,-4.39V15.21c0,-2.41 -1.97,-4.39 -4.39,-4.39H70.95L70.95,10.82zM86.39,41.19h-8.57c0.81,2.65 1.25,5.45 1.25,8.35c0,16.2 -13.56,29.33 -30.27,29.33c-16.72,0 -30.27,-13.13 -30.27,-29.33c0,-2.9 0.44,-5.71 1.25,-8.35h-8.94v41.14c0,2.13 1.74,3.87 3.87,3.87h67.82c2.13,0 3.87,-1.74 3.87,-3.87V41.19H86.39zM48.79,29.53c-10.8,0 -19.56,8.48 -19.56,18.95c0,10.47 8.76,18.95 19.56,18.95c10.8,0 19.56,-8.48 19.56,-18.95C68.35,38.02 59.59,29.53 48.79,29.53z" />
</vector>
10 changes: 6 additions & 4 deletions library/src/main/res/drawable/about_icon_link.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:height="24dp"
android:width="24dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path android:fillColor="#000" android:pathData="M10.59,13.41C11,13.8 11,14.44 10.59,14.83C10.2,15.22 9.56,15.22 9.17,14.83C7.22,12.88 7.22,9.71 9.17,7.76V7.76L12.71,4.22C14.66,2.27 17.83,2.27 19.78,4.22C21.73,6.17 21.73,9.34 19.78,11.29L18.29,12.78C18.3,11.96 18.17,11.14 17.89,10.36L18.36,9.88C19.54,8.71 19.54,6.81 18.36,5.64C17.19,4.46 15.29,4.46 14.12,5.64L10.59,9.17C9.41,10.34 9.41,12.24 10.59,13.41M13.41,9.17C13.8,8.78 14.44,8.78 14.83,9.17C16.78,11.12 16.78,14.29 14.83,16.24V16.24L11.29,19.78C9.34,21.73 6.17,21.73 4.22,19.78C2.27,17.83 2.27,14.66 4.22,12.71L5.71,11.22C5.7,12.04 5.83,12.86 6.11,13.65L5.64,14.12C4.46,15.29 4.46,17.19 5.64,18.36C6.81,19.54 8.71,19.54 9.88,18.36L13.41,14.83C14.59,13.66 14.59,11.76 13.41,10.59C13,10.2 13,9.56 13.41,9.17Z" />
android:height="24dp"
android:viewportHeight="24"
android:viewportWidth="24">
<path
android:fillColor="#000"
android:pathData="M10.59,13.41C11,13.8 11,14.44 10.59,14.83C10.2,15.22 9.56,15.22 9.17,14.83C7.22,12.88 7.22,9.71 9.17,7.76V7.76L12.71,4.22C14.66,2.27 17.83,2.27 19.78,4.22C21.73,6.17 21.73,9.34 19.78,11.29L18.29,12.78C18.3,11.96 18.17,11.14 17.89,10.36L18.36,9.88C19.54,8.71 19.54,6.81 18.36,5.64C17.19,4.46 15.29,4.46 14.12,5.64L10.59,9.17C9.41,10.34 9.41,12.24 10.59,13.41M13.41,9.17C13.8,8.78 14.44,8.78 14.83,9.17C16.78,11.12 16.78,14.29 14.83,16.24V16.24L11.29,19.78C9.34,21.73 6.17,21.73 4.22,19.78C2.27,17.83 2.27,14.66 4.22,12.71L5.71,11.22C5.7,12.04 5.83,12.86 6.11,13.65L5.64,14.12C4.46,15.29 4.46,17.19 5.64,18.36C6.81,19.54 8.71,19.54 9.88,18.36L13.41,14.83C14.59,13.66 14.59,11.76 13.41,10.59C13,10.2 13,9.56 13.41,9.17Z" />
</vector>
Loading

0 comments on commit 4d99a10

Please sign in to comment.