Skip to content

Commit ba15017

Browse files
committed
FINAL1
1 parent 106cb8f commit ba15017

File tree

162 files changed

+1204
-222
lines changed

Some content is hidden

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

162 files changed

+1204
-222
lines changed

app/build.gradle

+29-31
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,18 @@
1-
buildscript {
2-
repositories {
3-
maven { url 'https://maven.fabric.io/public' }
4-
}
5-
6-
dependencies {
7-
classpath 'io.fabric.tools:gradle:1.+'
8-
}
9-
}
10-
111
apply plugin: 'com.android.application'
12-
apply plugin: 'io.fabric'
13-
14-
repositories {
15-
maven { url 'https://maven.fabric.io/public' }
16-
}
172

183
android {
194
compileSdkVersion 28
205
buildToolsVersion "28.0.3"
21-
lintOptions {
22-
checkReleaseBuilds false
23-
abortOnError false
24-
}
6+
257
defaultConfig {
268
applicationId "com.shubham.fintech"
27-
minSdkVersion 21
9+
minSdkVersion 18
2810
targetSdkVersion 28
2911
versionCode 1
3012
versionName "1.0.0"
3113
multiDexEnabled = true
3214
}
33-
dexOptions {
15+
dexOptions {
3416
preDexLibraries = false
3517
javaMaxHeapSize "4g"
3618
}
@@ -42,7 +24,6 @@ android {
4224
}
4325
}
4426

45-
4627
dependencies {
4728
implementation fileTree(include: ['*.jar'], dir: 'libs')
4829
implementation project(':wowoviewpager')
@@ -51,33 +32,50 @@ dependencies {
5132
implementation 'com.android.support:appcompat-v7:28.0.0'
5233
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
5334
implementation 'com.android.support:support-v4:28.0.0'
54-
implementation 'com.android.support:support-vector-drawable:28.0.0'
35+
implementation 'com.android.support:support-vector-drawable:28.0.0'
5536
implementation 'com.android.support:design:28.0.0'
5637
implementation 'com.android.support:support-annotations:28.0.0'
5738
testImplementation 'junit:junit:4.12'
58-
testImplementation 'org.assertj:assertj-core:3.12.2'
59-
testImplementation 'org.mockito:mockito-core:2.28.2'
39+
testImplementation 'org.assertj:assertj-core:3.9.1'
40+
testImplementation 'org.mockito:mockito-core:2.15.0'
6041
androidTestImplementation 'com.android.support.test:runner:1.0.2'
6142
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
6243
implementation 'com.github.hajiyevelnur92:intentanimation:1.0'
44+
//to load pictures
6345
implementation 'com.squareup.picasso:picasso:2.71828'
6446
implementation 'com.squareup.okhttp:okhttp:2.7.5'
47+
48+
//if possible image cropping functionality
6549
implementation 'com.theartofdev.edmodo:android-image-cropper:2.7.0'
50+
51+
//directly getting circular image
6652
implementation 'de.hdodenhof:circleimageview:3.0.0'
53+
54+
//to load images even offline and fast while storing in a compressed format
6755
implementation 'id.zelory:compressor:2.1.0'
56+
57+
//if used for zoom effect image
6858
implementation 'com.github.chrisbanes:PhotoView:2.1.4'
59+
60+
61+
62+
// to get dialog boxes in spots loading design
6963
implementation 'com.github.d-max:spots-dialog:1.1@aar'
70-
implementation 'com.google.firebase:firebase-database:18.0.0'
71-
implementation 'com.google.firebase:firebase-storage:18.0.0'
72-
implementation 'com.google.firebase:firebase-auth:18.0.0'
73-
implementation 'com.google.firebase:firebase-core:17.0.0'
64+
// to convert json into object and vice-versa using google gson
65+
//firebase if used further
66+
67+
implementation 'com.google.firebase:firebase-database:17.0.0'
68+
implementation 'com.google.firebase:firebase-storage:17.0.0'
69+
implementation 'com.google.firebase:firebase-auth:17.0.0'
7470
implementation 'com.firebaseui:firebase-ui-database:5.0.0'
7571
implementation 'com.firebaseui:firebase-ui-auth:5.0.0'
72+
implementation 'com.google.firebase:firebase-core:16.0.9'
7673
implementation 'com.rengwuxian.materialedittext:library:2.1.4'
7774
implementation 'com.chaos.view:pinview:1.3.2'
75+
implementation files('libs/awais.jar')
7876
implementation project(':dBPullToRefresh')
79-
implementation 'com.google.code.gson:gson:2.8.5'
80-
implementation 'com.android.volley:volley:1.1.1'
77+
implementation 'com.android.volley:volley:1.1.1'
78+
8179
}
8280

8381
apply plugin: 'com.google.gms.google-services'

app/release/app-release.apk

521 KB
Binary file not shown.

app/src/main/AndroidManifest.xml

+11-58
Original file line numberDiff line numberDiff line change
@@ -15,29 +15,27 @@
1515
<uses-permission android:name="android.permission.RECORD_AUDIO" />
1616
<uses-permission android:name="android.permission.WRITE_SETTINGS" />
1717

18+
1819
<application
19-
android:name=".App.AppController"
2020
android:allowBackup="true"
21+
android:name=".App.AppController"
2122
android:icon="@mipmap/ic_launcher"
2223
android:label="@string/app_name"
2324
android:largeHeap="true"
2425
android:roundIcon="@mipmap/ic_launcher"
2526
android:supportsRtl="true"
26-
android:theme="@style/MyMaterialTheme"
27-
tools:replace="android:appComponentFactory"
28-
android:appComponentFactory="whateverString"
29-
>
30-
<activity android:name=".activity.FAQ"></activity>
31-
<activity android:name=".activity.About" />
27+
28+
android:theme="@style/MyMaterialTheme">
3229
<activity
3330
android:name=".activity.MainActivity"
34-
android:label="@string/app_name"
35-
android:screenOrientation="portrait" />
31+
android:label="@string/app_name" >
32+
33+
</activity>
3634
<activity
3735
android:name=".activity.SplashActivity"
3836
android:configChanges="touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
3937
android:label="@string/app_name"
40-
android:screenOrientation="portrait">
38+
android:screenOrientation="portrait" >
4139
<intent-filter>
4240
<action android:name="android.intent.action.MAIN" />
4341

@@ -46,9 +44,9 @@
4644
</activity>
4745
<activity
4846
android:name=".GuidePageActivity2"
49-
android:configChanges="touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
50-
android:screenOrientation="portrait"
51-
android:theme="@style/ShowAppTheme" />
47+
android:theme="@style/ShowAppTheme">
48+
</activity>
49+
5250

5351
<uses-library
5452
android:name="org.apache.http.legacy"
@@ -66,51 +64,6 @@
6664
android:name="android.support.FILE_PROVIDER_PATHS"
6765
android:resource="@xml/provider_paths" />
6866
</provider>
69-
<activity
70-
android:name="com.facebook.FacebookActivity"
71-
android:configChanges="keyboard|keyboardHidden|screenLayout|screenSize|orientation"
72-
android:label="@string/app_name"
73-
android:theme="@android:style/Theme.Translucent.NoTitleBar" />
74-
<service android:name=".cricketquiz.serv"></service>
75-
76-
77-
<activity
78-
android:name=".cricketquiz.AboutUs"
79-
android:label="@string/title_activity_about_us"></activity>
80-
<activity android:name=".cricketquiz.AdsActivity"></activity>
81-
<activity
82-
android:name=".cricketquiz.LastScreen"
83-
android:label="@string/title_activity_last_screen"></activity>
84-
<activity
85-
android:name=".cricketquiz.MainActivityq"
86-
android:label="@string/app_name">
87-
<intent-filter>
88-
<action android:name="android.intent.action.MAIN" />
89-
90-
<category android:name="android.intent.category.LAUNCHER" />
91-
</intent-filter>
92-
</activity>
93-
<activity android:name="com.startapp.android.publish.list3d.List3DActivity"
94-
android:theme="@android:style/Theme" />
95-
96-
<activity android:name="com.startapp.android.publish.OverlayActivity"
97-
android:theme="@android:style/Theme.Translucent"
98-
android:configChanges="orientation|keyboardHidden|screenSize" />
99-
100-
<activity android:name="com.startapp.android.publish.FullScreenActivity"
101-
android:theme="@android:style/Theme"
102-
android:configChanges="orientation|keyboardHidden|screenSize" />
103-
104-
<provider
105-
android:name="com.facebook.FacebookContentProvider"
106-
android:authorities="com.facebook.app.FacebookContentProvider493481567493903"
107-
android:exported="true" />
108-
109-
<meta-data
110-
android:name="io.fabric.ApiKey"
111-
android:value="d04b524792a03c95687503a3970d9b3fe8313871" />
112-
113-
11467
</application>
11568

11669
</manifest>
Loading
Loading
Loading
Loading
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<vector android:height="24dp" android:tint="#FFFFFF"
22
android:viewportHeight="24.0" android:viewportWidth="24.0"
33
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
4-
<path android:fillColor="#FF000000" android:pathData="M12,5.9c1.16,0 2.1,0.94 2.1,2.1s-0.94,2.1 -2.1,2.1S9.9,9.16 9.9,8s0.94,-2.1 2.1,-2.1m0,9c2.97,0 6.1,1.46 6.1,2.1v1.1L5.9,18.1L5.9,17c0,-0.64 3.13,-2.1 6.1,-2.1M12,4C9.79,4 8,5.79 8,8s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4zM12,13c-2.67,0 -8,1.34 -8,4v3h16v-3c0,-2.66 -5.33,-4 -8,-4z"/>
4+
<path android:name="outline" android:fillColor="#FFFFFFFF" android:pathData="M12,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM12,5c1.66,0 3,1.34 3,3s-1.34,3 -3,3 -3,-1.34 -3,-3 1.34,-3 3,-3zM12,19.2c-2.5,0 -4.71,-1.28 -6,-3.22 0.03,-1.99 4,-3.08 6,-3.08 1.99,0 5.97,1.09 6,3.08 -1.29,1.94 -3.5,3.22 -6,3.22z"/>
55
</vector>

app/src/main/res/layout/activity_full_scoreboard.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
xmlns:app="http://schemas.android.com/apk/res-auto"
55
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
66
android:layout_height="match_parent" android:fitsSystemWindows="true"
7-
tools:context=".activity.full_scoreboard">
7+
tools:context="com.shubham.fintech.activity.full_scoreboard">
88

99
<android.support.design.widget.AppBarLayout android:layout_height="wrap_content"
1010
android:layout_width="match_parent" android:theme="@style/MyMaterialTheme">

app/src/main/res/layout/activity_guide_page2.xml

+3-4
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
android:layout_gravity="center_horizontal"
4545
android:layout_marginTop="10dp"
4646
android:textSize="20sp"
47-
47+
4848
android:inputType="textEmailAddress"
4949
android:drawableLeft="@drawable/ic_email"
5050
app:met_floatingLabel="highlight"
@@ -68,7 +68,7 @@
6868
android:hint="@string/password"
6969
app:met_primaryColor="@android:color/black"
7070
app:met_singleLineEllipsis="true"
71-
71+
7272
android:textSize="20sp"
7373
android:visibility="visible"
7474
android:layout_height="wrap_content"
@@ -204,7 +204,6 @@
204204
app:wowo_dynamicPath="true"
205205
app:wowo_headImageSrc="@drawable/rocket"
206206
app:wowo_headImageWidth="60dp"
207-
208207
/>
209208

210209
<ImageView
@@ -235,4 +234,4 @@
235234
android:visibility="invisible"
236235
tools:ignore="ContentDescription" />
237236

238-
</FrameLayout>
237+
</FrameLayout>

app/src/main/res/layout/activity_main.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
xmlns:app="http://schemas.android.com/apk/res-auto"
55
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
66
android:layout_height="match_parent" android:fitsSystemWindows="true"
7-
tools:context=".activity.MainActivity">
7+
tools:context="com.shubham.fintech.activity.MainActivity">
88

99

1010

@@ -19,7 +19,7 @@
1919
android:layout_marginBottom="60dp"
2020
android:src="@drawable/loading"
2121
android:layout_marginRight="10dp"
22-
app:backgroundTint="@android:color/holo_red_dark"
22+
app:backgroundTint="@color/colorPrimary"
2323
/>
2424

2525
</android.support.design.widget.CoordinatorLayout>

0 commit comments

Comments
 (0)