- Android Studio Flamingo | 2022.2.1
- Build #AI-222.4459.24.2221.9862592, built on March 31, 2023
- Gradle JDK: jbr-17 (JetBrains Runtime version 17.0.6)
- Windows 11 (version 10.0.22000.1817)
# Subscribe to my YouTube Channel -> https://lokjianming.page.link/CVLm # | |
How to Crack Sublime Text 3 with Hex Editor (without license) ↓ | |
1. Download & Install Sublime Text 3.2.2 Build 3211 | |
2. Visit Hexed.it | |
3. Open file sublime_text.exe | |
4. Search address: 97 94 0D -> 00 00 00 | |
5. Offset 0x8545: Original 84 -> 85 | |
6. Offset 0x08FF19: Original 75 -> EB |
/** | |
* It took me AGES to figure this out, seriously, exoplayer documentation IS SO BAD. | |
*/ | |
package xxx | |
import android.net.Uri | |
import android.os.Bundle | |
import android.support.v7.app.AppCompatActivity | |
import com.cube.arc.R |
package com.geothings.geobingan.ui | |
import android.animation.Animator | |
import android.animation.AnimatorListenerAdapter | |
import android.animation.ValueAnimator | |
import android.content.Context | |
import android.graphics.Color | |
import android.text.Spannable | |
import android.text.SpannableStringBuilder | |
import android.text.style.ForegroundColorSpan |
data class DownloadItem( | |
val bytesDownloadedSoFar: Long = -1, | |
val totalSizeBytes: Long = -1, | |
val status: Int, | |
val uri: String | |
) | |
class DownloadProgressLiveData(private val activity: Activity) : | |
LiveData<List<DownloadItem>>(), | |
CoroutineScope { |