This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://www.netguru.com/codestories/3-ways-how-to-implement-certificate-pinning-on-android |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Test{ | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Test{ | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| 11, | |
| 12, | |
| 13, | |
| 14, | |
| 15, | |
| 16, | |
| 17, | |
| 18, | |
| 19, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| private inner class HttpInterceptor : Interceptor { | |
| @Throws(IOException::class) | |
| override fun intercept(chain: Interceptor.Chain): okhttp3.Response { | |
| var request = chain.request() | |
| val builder = request.newBuilder() | |
| request = builder.build() | |
| val response = chain.proceed(request) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.cwb.androiddevbr.cidadaodebem.data | |
| import android.util.Log | |
| import androidx.lifecycle.LiveData | |
| import com.google.firebase.firestore.* | |
| class FirebaseQueryLiveData(val query: Query) : LiveData<QuerySnapshot>() { | |
| private val LOG_TAG = "FirebaseQueryLiveData" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| private fun writeCloud(text: String): BitmapDrawable { | |
| // Draw bitmap | |
| val drawable = ContextCompat.getDrawable(context, R.drawable.ic_cloud) | |
| val bitmap = Bitmap.createBitmap(drawable?.intrinsicWidth ?: 68f.toPx.toInt(), | |
| drawable?.intrinsicHeight ?: 48f.toPx.toInt(), Bitmap.Config.ARGB_8888) | |
| val textPaint = TextPaint().apply { | |
| style = Paint.Style.FILL | |
| color = Color.BLACK | |
| flags = Paint.ANTI_ALIAS_FLAG | |
| xfermode = PorterDuffXfermode(PorterDuff.Mode.XOR) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.xxmassdeveloper.mpchartexample; | |
| import android.graphics.Color; | |
| import android.graphics.LinearGradient; | |
| import android.graphics.Matrix; | |
| import android.graphics.Paint; | |
| import android.graphics.Shader; | |
| import android.graphics.drawable.Drawable; | |
| import android.graphics.drawable.GradientDrawable; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.xxmassdeveloper.mpchartexample; | |
| import android.graphics.Color; | |
| import android.graphics.LinearGradient; | |
| import android.graphics.Matrix; | |
| import android.graphics.Paint; | |
| import android.graphics.Shader; | |
| import android.graphics.drawable.Drawable; | |
| import android.graphics.drawable.GradientDrawable; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.xxmassdeveloper.mpchartexample; | |
| import android.graphics.Color; | |
| import android.graphics.LinearGradient; | |
| import android.graphics.Matrix; | |
| import android.graphics.Paint; | |
| import android.graphics.Shader; | |
| import android.graphics.drawable.Drawable; | |
| import android.graphics.drawable.GradientDrawable; |