Yogi Arif Widodo

Results 62 comments of Yogi Arif Widodo

yes, there is no documentation about to decrypted of string encrypter aes.

i have test with 2 api where its one have cors and one dont have. if api dont have , its throw `Missing required request header. Must specify one of:...

i also got ``` Process: org.tensorflow.lite.examples.detection, PID: 30742 java.lang.IllegalArgumentException: Cannot copy to a TensorFlowLite tensor (input_2) with 602112 bytes from a Java Buffer with 1080000 bytes. ``` i have try...

my dataClass / ApprovalRequest.kt ``` package id.xxta.network.response.xx import android.os.Parcelable import com.google.gson.annotations.SerializedName import kotlinx.android.parcel.Parcelize @Parcelize data class ApprovalRequest( @field:SerializedName("nm_company") val nmCompany: String? = null, @field:SerializedName("ttds") val ttds: List? = null, @field:SerializedName("id")...

ah solved by these https://stackoverflow.com/a/44350484/8122500 ``` val data: String = gson.toJson(approvalRequest) JSONObject(data) ```

`com.androidnetworking.error.ANError: okhttp3.internal.http2.ConnectionShutdownException` me to .. i have increase network with ``` val client = OkHttpClient.Builder() .connectTimeout(10, TimeUnit.SECONDS) .writeTimeout(10, TimeUnit.SECONDS) .readTimeout(30, TimeUnit.SECONDS) .build() AndroidNetworking.initialize(applicationContext, client) ``` but the error still appear...

already solved by added `android:requestLegacyExternalStorage="true"` in `manifest` before i always get `ConnectionShutdownException` before upload.kt `if (requestCode == 0 && resultCode == Activity.RESULT_OK && data !=null ) {` when i change...

this my values-v28.xml ``` ?android:attr/dialogCornerRadius ?android:attr/dialogCornerRadius ``` this my

https://stackoverflow.com/questions/49280632/error9-5-error-resource-androidattr-dialogcornerradius-not-found ah sorry 🗡

where is the difference -_- ``` apply plugin: 'com.android.application' apply plugin: 'kotlin-android' apply plugin: 'kotlin-android-extensions' android { signingConfigs { configEgoTl { keyAlias '*****' keyPassword '****' storeFile file('******') storePassword '*******' }...