Skip to content

Commit f0fde74

Browse files
author
Ramakrishna Joshi
committed
1. Enabled and Commented Proguard
2. Learnt Flatmap and zip operator working
1 parent ae0cdf3 commit f0fde74

14 files changed

+540
-16
lines changed

app/build.gradle

+45-1
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,45 @@ android {
1212
}
1313
buildTypes {
1414
release {
15-
minifyEnabled false
15+
minifyEnabled true
16+
debuggable true
1617
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
1718
}
19+
debug {
20+
// Enables code shrinking, obfuscation, and optimization for only
21+
// your project's release build type.
22+
minifyEnabled true
23+
// Enables resource shrinking, which is performed by the
24+
// Android Gradle plugin.
25+
shrinkResources true
26+
27+
debuggable true
28+
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
29+
//or
30+
//proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'debug_proguard.txt'
31+
}
32+
debugWithoutProguardEnabled {
33+
minifyEnabled false
34+
debuggable true
35+
//proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
36+
//or
37+
//proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'debug_proguard.txt'
38+
}
1839
}
40+
// flavorDimensions "testFlavorDimension"
41+
//
42+
// buildTypes.each { it.buildConfigField 'String', 'OPEN_WEATHER_MAP_API_KEY',' "11111111111111111111111"' }
43+
//
44+
// productFlavors{
45+
// free{
46+
// buildConfigField "String", "ENABLE_CRASHLYTICS", '"true"'
47+
// dimension "testFlavorDimension"
48+
// }
49+
//
50+
// paid{
51+
// dimension "testFlavorDimension"
52+
// }
53+
// }
1954
compileOptions { //enables java 8 features like lambda....confirm this
2055
sourceCompatibility = '1.8'
2156
targetCompatibility = '1.8'
@@ -27,6 +62,9 @@ dependencies {
2762
implementation 'com.android.support:appcompat-v7:28.0.0'
2863
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
2964

65+
//multi-dex
66+
implementation 'com.android.support:multidex:1.0.3'
67+
3068
//RxJava2 : rx-android and rx-java
3169
implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
3270
// Because RxAndroid releases are few and far between, it is recommended you also
@@ -50,4 +88,10 @@ dependencies {
5088
implementation 'com.squareup.okhttp3:logging-interceptor:3.6.0'
5189
//An Adapter for adapting RxJava 2.x types.
5290
implementation 'com.squareup.retrofit2:adapter-rxjava2:2.2.0'
91+
92+
implementation 'com.squareup.retrofit2:converter-scalars:2.1.0'
93+
94+
//view-model
95+
implementation "android.arch.lifecycle:extensions:1.1.1"
96+
implementation "android.arch.lifecycle:viewmodel:1.1.1"
5397
}

app/debug_proguard.txt

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
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
22+
23+
# Set of ProGuard rules applied to release builds
24+
#
25+
-keepattributes SourceFile,LineNumberTable,Annotation,InnerClasses,Exceptions,Signature,EnclosingMethod
26+
-renamesourcefileattribute SourceFile
27+
28+
#-dontobfuscate
29+
-dontoptimize
30+
-dontnote **
31+
# We own this code, and everything in this package is definitely defining our domain. Better not to have ProGuard messing with it
32+
-keep public class com.tottus.** { *; }
33+
# Retrofit
34+
-dontwarn retrofit2.**
35+
-dontwarn okio.**
36+
-dontwarn javax.annotation.**
37+
# Apache Legacy
38+
-dontwarn org.apache.lang.**
39+
# Kotlin Reflect
40+
-dontwarn kotlin.reflect.jvm.internal.**
41+
# OkHttp
42+
-keepattributes Signature
43+
-keepattributes Annotation
44+
-keep class com.squareup.okhttp.** { *; }
45+
-keep interface com.squareup.okhttp.** { *; }
46+
-dontwarn com.squareup.okhttp.**
47+
# Dagger
48+
-dontwarn dagger.android.DispatchingAndroidInjector
49+
-dontwarn com.google.errorprone.annotations.**
50+
# Glide
51+
-dontwarn android.graphics.Bitmap$Config
52+
-dontwarn android.app.FragmentManager
53+
#VisaNet
54+
-dontwarn org.apache.http.**
55+
-dontwarn com.threatmetrix.**
56+
#-dontwarn com.google.android.gms.**
57+
58+
-keep class com.example.reactiveprogrammingusingrxjava2.rx_api_calls.model.** { *; }

app/proguard-rules.pro

+38
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,41 @@
1919
# If you keep the line number information, uncomment this to
2020
# hide the original source file name.
2121
#-renamesourcefileattribute SourceFile
22+
23+
# Set of ProGuard rules applied to release builds
24+
-keepattributes SourceFile,LineNumberTable,Annotation,InnerClasses,Exceptions,Signature,EnclosingMethod
25+
-renamesourcefileattribute SourceFile
26+
27+
#-dontobfuscate
28+
-dontoptimize
29+
-dontnote **
30+
# Retrofit
31+
-dontwarn retrofit2.**
32+
-dontwarn okio.**
33+
-dontwarn javax.annotation.**
34+
# Apache Legacy
35+
-dontwarn org.apache.lang.**
36+
# Kotlin Reflect
37+
-dontwarn kotlin.reflect.jvm.internal.**
38+
# OkHttp
39+
-keepattributes Signature
40+
-keepattributes Annotation
41+
-keep class com.squareup.okhttp.** { *; }
42+
-keep interface com.squareup.okhttp.** { *; }
43+
-dontwarn com.squareup.okhttp.**
44+
# Dagger
45+
-dontwarn dagger.android.DispatchingAndroidInjector
46+
-dontwarn com.google.errorprone.annotations.**
47+
# Glide
48+
-dontwarn android.graphics.Bitmap$Config
49+
-dontwarn android.app.FragmentManager
50+
#VisaNet
51+
-dontwarn org.apache.http.**
52+
-dontwarn com.threatmetrix.**
53+
#-dontwarn com.google.android.gms.**
54+
55+
#-keep class com.example.reactiveprogrammingusingrxjava2.rx_api_calls.model.** { *; }
56+
-keep class com.example.reactiveprogrammingusingrxjava2.rx_api_calls.model.** { *; }
57+
#-keepattributes *Annotation*                      // Keep Crashlytics annotations
58+
#-keepattributes SourceFile,LineNumberTable        // Keep file names/line numbers
59+
#-keep public class * extends java.lang.Exception  // Keep custom exceptions (opt)

app/src/main/AndroidManifest.xml

+17-9
Original file line numberDiff line numberDiff line change
@@ -3,32 +3,40 @@
33
xmlns:tools="http://schemas.android.com/tools"
44
package="com.example.reactiveprogrammingusingrxjava2">
55

6-
<uses-permission android:name="android.permission.INTERNET"/>
6+
<uses-permission android:name="android.permission.INTERNET" />
77

88
<application
99
android:allowBackup="true"
1010
android:icon="@mipmap/ic_launcher"
1111
android:label="@string/app_name"
12+
android:networkSecurityConfig="@xml/network_security_config"
1213
android:roundIcon="@mipmap/ic_launcher_round"
1314
android:supportsRtl="true"
1415
android:theme="@style/AppTheme"
15-
tools:ignore="GoogleAppIndexingWarning"
16-
android:networkSecurityConfig="@xml/network_security_config">
16+
tools:ignore="GoogleAppIndexingWarning">
17+
<activity android:name=".retrofit_api_calls.RetrofitAPICallActivity" />
18+
<activity android:name=".MainActivity" />
19+
<activity android:name=".rx_api_calls.RxAPICallActivity">
1720

18-
<activity android:name=".retrofit_api_calls.RetrofitAPICallActivity"/>
19-
<activity android:name=".MainActivity"/>
20-
<activity android:name=".rx_api_calls.RxAPICallActivity"/>
21-
<!--<activity android:name="._operators.Rx_b_BufferAndDebounce" />-->
21+
<!--
22+
<intent-filter>
23+
<action android:name="android.intent.action.MAIN" />
24+
<category android:name="android.intent.category.LAUNCHER" />
25+
</intent-filter>
26+
-->
27+
</activity>
2228
<activity android:name="._operators.Rx_c_MergeOperator" />
2329
<activity android:name="._operators.Rx_d_ConcatOperator"/>
2430
<activity android:name=".case_studies.Rx_NonUIThreadCanAccessViews" />
2531
<activity android:name="._operators.Rx_a_CreateOperator" />
26-
<activity android:name="._operators.Rx_b_BufferAndDebounce" >
32+
<activity android:name="._operators.Rx_b_BufferAndDebounce" />
33+
<activity android:name="._operators.concurrentcalls.ConcurrentAPICallActivity" >
2734
<intent-filter>
2835
<action android:name="android.intent.action.MAIN" />
36+
2937
<category android:name="android.intent.category.LAUNCHER" />
3038
</intent-filter>
3139
</activity>
3240
</application>
3341

34-
</manifest>
42+
</manifest>

app/src/main/java/com/example/reactiveprogrammingusingrxjava2/_operators/Rx_d_ConcatOperator.java

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package com.example.reactiveprogrammingusingrxjava2._operators;
22

3-
import android.support.v7.app.AppCompatActivity;
3+
import android.annotation.SuppressLint;
44

55
import com.example.reactiveprogrammingusingrxjava2.BaseActivity;
66

@@ -9,12 +9,13 @@
99

1010
public class Rx_d_ConcatOperator extends BaseActivity {
1111

12+
@SuppressLint("CheckResult")
1213
@Override
1314
protected void onResume() {
1415
super.onResume();
1516

16-
Observable aSeriesObservable = Observable.just("A1","A2","A3","A4","A5","A6","A7", "A8", "A9", "A10");
17-
Observable bSeriesObservable = Observable.just("B1","B2","B3","B4","B5","B6","B7", "B8", "B9", "B10");
17+
Observable aSeriesObservable = Observable.just("A1", "A2", "A3", "A4", "A5", "A6", "A7", "A8", "A9", "A10");
18+
Observable bSeriesObservable = Observable.just("B1", "B2", "B3", "B4", "B5", "B6", "B7", "B8");
1819

1920
Observable
2021
.concat(bSeriesObservable, aSeriesObservable)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
package com.example.reactiveprogrammingusingrxjava2._operators.concurrentcalls;
2+
3+
import android.arch.lifecycle.Observer;
4+
import android.arch.lifecycle.ViewModelProviders;
5+
import android.os.Bundle;
6+
import android.support.annotation.Nullable;
7+
import android.support.v7.app.AppCompatActivity;
8+
import android.view.View;
9+
import android.widget.Button;
10+
import com.example.reactiveprogrammingusingrxjava2.R;
11+
import com.google.gson.GsonBuilder;
12+
import okhttp3.OkHttpClient;
13+
import okhttp3.logging.HttpLoggingInterceptor;
14+
import retrofit2.Retrofit;
15+
import retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory;
16+
import retrofit2.converter.gson.GsonConverterFactory;
17+
import retrofit2.converter.scalars.ScalarsConverterFactory;
18+
19+
public class ConcurrentAPICallActivity extends AppCompatActivity {
20+
21+
Button button;
22+
23+
@Override
24+
protected void onCreate(@Nullable Bundle savedInstanceState) {
25+
super.onCreate(savedInstanceState);
26+
setContentView(R.layout.activity_temp);
27+
28+
ConcurrentAPIViewModel viewModel =
29+
ViewModelProviders.of(this).get(ConcurrentAPIViewModel.class);
30+
31+
button = findViewById(R.id.button_test);
32+
button.setOnClickListener(new View.OnClickListener() {
33+
@Override
34+
public void onClick(View v) {
35+
viewModel.getCustomerInformation(getCustomerInfoBackend());
36+
}
37+
});
38+
39+
viewModel.userWalletInfo.observe(this, new Observer<Object>() {
40+
@Override
41+
public void onChanged(@Nullable Object o) {
42+
viewModel.getCustomerInformation(getCustomerInfoBackend());
43+
}
44+
});
45+
}
46+
47+
private CustomerInfoBackend getCustomerInfoBackend() {
48+
49+
HttpLoggingInterceptor httpLoggingInterceptor = new HttpLoggingInterceptor();
50+
httpLoggingInterceptor.setLevel(HttpLoggingInterceptor.Level.BODY);
51+
52+
OkHttpClient.Builder builder = new OkHttpClient.Builder();
53+
builder.addNetworkInterceptor(httpLoggingInterceptor);
54+
55+
GsonBuilder gson = new GsonBuilder();
56+
gson.setLenient();
57+
Retrofit retrofit = new Retrofit.Builder()
58+
.baseUrl("https://customerdata.free.beeceptor.com")
59+
.client(builder.build())
60+
.addConverterFactory(ScalarsConverterFactory.create())
61+
.addConverterFactory(GsonConverterFactory.create(gson.create()))
62+
//.addConverterFactory(new GsonPConverterFactory(gson.create()))
63+
.addCallAdapterFactory(RxJava2CallAdapterFactory.create())
64+
.build();
65+
66+
CustomerInfoBackend customerInfoBackend = retrofit.create(CustomerInfoBackend.class);
67+
return customerInfoBackend;
68+
}
69+
}

0 commit comments

Comments
 (0)