Skip to content

Commit 879b0f1

Browse files
committed
Initial commit
0 parents  commit 879b0f1

File tree

553 files changed

+19531
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

553 files changed

+19531
-0
lines changed

app/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build

app/build.gradle

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
apply plugin: 'com.android.application'
2+
3+
android {
4+
compileSdkVersion 29
5+
buildToolsVersion "29.0.2"
6+
defaultConfig {
7+
applicationId "com.mobile.bitgo"
8+
minSdkVersion 21
9+
targetSdkVersion 29
10+
versionCode 1
11+
versionName "1.0"
12+
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
13+
}
14+
buildTypes {
15+
release {
16+
minifyEnabled false
17+
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
18+
}
19+
}
20+
}
21+
22+
dependencies {
23+
implementation fileTree(dir: 'libs', include: ['*.jar'])
24+
implementation 'androidx.appcompat:appcompat:1.0.2'
25+
implementation 'com.google.android.material:material:1.0.0'
26+
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
27+
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
28+
implementation 'com.android.support:appcompat-v7:29.+'
29+
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
30+
implementation 'com.android.support:support-v4:29.+'
31+
testImplementation 'junit:junit:4.12'
32+
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
33+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
34+
implementation 'com.squareup.retrofit2:retrofit:2.6.0'
35+
implementation 'com.squareup.retrofit2:converter-gson:2.4.0'
36+
implementation 'androidx.cardview:cardview:1.0.0'
37+
implementation 'com.google.android.material:material:1.1.0-alpha10'
38+
implementation 'androidx.recyclerview:recyclerview:1.2.0-alpha01'
39+
implementation 'com.github.mohammadatif:Animatoo:master'
40+
implementation 'com.squareup.picasso:picasso:2.71828'
41+
implementation 'br.com.simplepass:loading-button-android:1.7.2'
42+
implementation 'com.steelkiwi:dots-loader-view:1.0.0'
43+
implementation 'com.github.d-max:spots-dialog:0.7@aar'
44+
45+
46+
}

app/proguard-rules.pro

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Add project specific ProGuard rules here.
2+
# You can control the set of applied configuration files using the
3+
# proguardFiles setting in build.gradle.
4+
#
5+
# For more details, see
6+
# http://developer.android.com/guide/developing/tools/proguard.html
7+
8+
# If your project uses WebView with JS, uncomment the following
9+
# and specify the fully qualified class name to the JavaScript interface
10+
# class:
11+
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
12+
# public *;
13+
#}
14+
15+
# Uncomment this to preserve the line number information for
16+
# debugging stack traces.
17+
#-keepattributes SourceFile,LineNumberTable
18+
19+
# If you keep the line number information, uncomment this to
20+
# hide the original source file name.
21+
#-renamesourcefileattribute SourceFile

app/release/app-release.aab

4.61 MB
Binary file not shown.

app/release/app-release.apk

4.94 MB
Binary file not shown.

app/release/output.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
[{"outputType":{"type":"APK"},"apkData":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"1.0","enabled":true,"outputFile":"app-release.apk","fullName":"release","baseName":"release"},"path":"app-release.apk","properties":{}}]
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
package com.mobile.bitgo;
2+
3+
import android.content.Context;
4+
5+
import androidx.test.platform.app.InstrumentationRegistry;
6+
import androidx.test.ext.junit.runners.AndroidJUnit4;
7+
8+
import org.junit.Test;
9+
import org.junit.runner.RunWith;
10+
11+
import static org.junit.Assert.*;
12+
13+
/**
14+
* Instrumented test, which will execute on an Android device.
15+
*
16+
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
17+
*/
18+
@RunWith(AndroidJUnit4.class)
19+
public class ExampleInstrumentedTest {
20+
@Test
21+
public void useAppContext() {
22+
// Context of the app under test.
23+
Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext();
24+
25+
assertEquals("com.mobile.bitgo", appContext.getPackageName());
26+
}
27+
}

app/src/main/AndroidManifest.xml

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
xmlns:tools="http://schemas.android.com/tools"
4+
package="com.mobile.bitgo">
5+
6+
<uses-permission android:name="android.permission.INTERNET" />
7+
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
8+
9+
<application
10+
android:allowBackup="true"
11+
android:icon="@mipmap/ic_launcher"
12+
android:label="@string/app_name"
13+
android:roundIcon="@mipmap/ic_launcher_round"
14+
android:supportsRtl="true"
15+
android:theme="@style/AppTheme"
16+
android:usesCleartextTraffic="true"
17+
tools:ignore="GoogleAppIndexingWarning">
18+
<activity android:name=".New"></activity>
19+
<activity android:name=".Transaction_info" />
20+
<activity
21+
android:name=".Email_Ver"
22+
android:screenOrientation="portrait" />
23+
<activity
24+
android:name=".Receive"
25+
android:screenOrientation="portrait" />
26+
<activity
27+
android:name=".Send"
28+
android:screenOrientation="portrait" />
29+
<activity
30+
android:name=".View_wallet"
31+
android:screenOrientation="portrait" />
32+
<activity
33+
android:name=".View_Noty"
34+
android:screenOrientation="portrait" />
35+
<activity
36+
android:name=".Landing"
37+
android:screenOrientation="portrait" />
38+
<activity
39+
android:name=".Select_Coin"
40+
android:screenOrientation="portrait" />
41+
<activity
42+
android:name=".show_all"
43+
android:screenOrientation="portrait" />
44+
<activity
45+
android:name=".Coins_list"
46+
android:screenOrientation="portrait" />
47+
<activity
48+
android:name=".Review"
49+
android:screenOrientation="portrait" />
50+
<activity
51+
android:name=".Recover_password"
52+
android:screenOrientation="portrait" />
53+
<activity
54+
android:name=".Home"
55+
android:screenOrientation="portrait" />
56+
<activity
57+
android:name=".Login"
58+
android:screenOrientation="portrait" />
59+
<activity android:name=".Profile" />
60+
<activity
61+
android:name=".SignUp"
62+
android:screenOrientation="portrait" />
63+
<activity android:name=".MainActivity">
64+
<intent-filter>
65+
<action android:name="android.intent.action.MAIN" />
66+
<action android:name="android.intent.action.SEARCH" />
67+
68+
<category android:name="android.intent.category.LAUNCHER" />
69+
</intent-filter>
70+
</activity>
71+
</application>
72+
73+
</manifest>

0 commit comments

Comments
 (0)