(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| package com.your.packagename | |
| import com.txwstudio.app.roadreport.json.imgurupload.ImgurUploadJson | |
| import okhttp3.MultipartBody | |
| import okhttp3.OkHttpClient | |
| import retrofit2.Call | |
| import retrofit2.Retrofit | |
| import retrofit2.converter.gson.GsonConverterFactory | |
| import retrofit2.http.Header | |
| import retrofit2.http.Multipart |
| package com.scarozza; | |
| import android.content.Context; | |
| import android.content.res.TypedArray; | |
| import android.graphics.Canvas; | |
| import android.graphics.LinearGradient; | |
| import android.graphics.RectF; | |
| import android.util.AttributeSet; | |
| import com.github.mikephil.charting.animation.ChartAnimator; |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.