Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions wallet/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ plugins {
}

android {
compileSdkVersion 32
compileSdkVersion 34
buildToolsVersion '28.0.3'

defaultConfig {
applicationId "com.boli.wallet"
minSdkVersion 14
targetSdkVersion 32
targetSdkVersion 34
versionCode 12
versionName "v3.0.1"
ndk.abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64'
Expand Down
10 changes: 0 additions & 10 deletions wallet/src/main/java/com/boli/wallet/ui/AboutActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,6 @@ public void myFace(View view){
startActivity(browserIntent);
}

public void myInstag(View view){
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://www.instagram.com/bolicoin/"));
startActivity(browserIntent);
}

public void myTwitt(View view){
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://twitter.com/BolivarCoin_XT"));
startActivity(browserIntent);
Expand All @@ -54,9 +49,4 @@ public void myTeleg(View view){
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://t.me/bolivarcoinoficial"));
startActivity(browserIntent);
}

public void myDiscord(View view){
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://discordapp.com/invite/Ea8Xprg"));
startActivity(browserIntent);
}
}
36 changes: 9 additions & 27 deletions wallet/src/main/res/layout/activity_about.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,15 @@
android:paddingTop="14dp"
android:text="@string/web_site" />

<TextView
style="@style/NormalText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:autoLink="web"
android:gravity="center"
android:paddingTop="14dp"
android:text="@string/faucet_web_site" />

<LinearLayout
android:layout_width="379dp"
android:layout_height="wrap_content"
Expand Down Expand Up @@ -104,20 +113,6 @@
android:layout_height="wrap_content"
android:layout_weight="1" />

<ImageButton
android:id="@+id/Instagram"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@color/social_bg"
android:onClick="myInstag"
app:srcCompat="@mipmap/instagram"
android:contentDescription="@string/instagram" />

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1" />

<ImageButton
android:id="@+id/Twitter"
android:layout_width="wrap_content"
Expand All @@ -141,19 +136,6 @@
app:srcCompat="@mipmap/telegram"
android:contentDescription="@string/telegram" />

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1" />

<ImageButton
android:id="@+id/Discord"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@color/social_bg"
android:onClick="myDiscord"
app:srcCompat="@mipmap/discord"
android:contentDescription="@string/discord" />
</LinearLayout>

<!--
Expand Down
1 change: 1 addition & 0 deletions wallet/src/main/res/values-es/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -357,6 +357,7 @@

<!-- About -->
<string name="web_site">Nuestra Página Web: https://bolis.info/</string>
<string name="faucet_web_site">Nuestra Faucet: https://boligrifo.com/</string>
<string name="social_networks">Nuestras Redes Sociales</string>
<string name="main_logo">Bolicoin</string>
<string name="facebook">Facebook</string>
Expand Down
1 change: 1 addition & 0 deletions wallet/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -402,6 +402,7 @@

<!-- About -->
<string name="web_site">Our website: https://bolis.info/</string>
<string name="faucet_web_site">Our faucet: https://boligrifo.com/</string>
<string name="social_networks">Our social networks</string>
<string name="main_logo">Bolicoin</string>
<string name="facebook">Facebook</string>
Expand Down