This file contains 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
# 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 |
This file contains 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
import android.content.Context | |
import android.graphics.Bitmap | |
import android.graphics.Canvas | |
import android.graphics.Color | |
import android.graphics.Paint | |
import android.graphics.drawable.Drawable | |
import android.os.Handler | |
import android.text.Editable | |
import android.text.Spannable | |
import android.text.SpannableString |
This file contains 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
import android.text.Editable | |
import android.text.SpannableString | |
import android.text.SpannableStringBuilder | |
import android.text.TextUtils | |
import android.text.style.AbsoluteSizeSpan | |
import androidx.core.text.inSpans | |
import androidx.lifecycle.MutableLiveData | |
import java.text.DecimalFormat | |
import java.util.* |
This file contains 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
import android.content.Context | |
import android.database.Cursor | |
import android.graphics.Bitmap | |
import android.graphics.BitmapFactory | |
import android.graphics.Matrix | |
import android.location.Location | |
import android.net.Uri | |
import android.provider.MediaStore | |
import android.text.format.DateFormat | |
import android.util.Base64 |
This file contains 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
import android.app.Activity | |
import android.app.ActivityManager | |
import android.app.Notification | |
import android.app.NotificationManager | |
import android.content.ActivityNotFoundException | |
import android.content.Context | |
import android.content.Intent | |
import android.content.pm.ActivityInfo | |
import android.graphics.* | |
import android.graphics.drawable.Drawable |
This file contains 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
import android.util.Base64; | |
import javax.crypto.Cipher; | |
import javax.crypto.spec.IvParameterSpec; | |
import javax.crypto.spec.SecretKeySpec; | |
public class CryptoUtil { | |
private static final String key = "SKs9uZKvZU2VOFjQISEg4tJQyAeqX3Mm"; | |
private static final String initVector = "53og3sqCcKdQl5Ud"; |
This file contains 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
import android.content.BroadcastReceiver | |
import android.content.Context | |
import android.content.Intent | |
import android.os.Build | |
class BroadCastReceiver : BroadcastReceiver() { | |
override fun onReceive(context: Context, intent: Intent) | |
{ | |
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) | |
context.startForegroundService(Intent(context,LocationMonitoringService::class.java)) |
This file contains 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
/** | |
* 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 |
This file contains 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://lankydan.dev/ // nice tutorials | |
https://proandroiddev.com/ // nice tutorials | |
https://medium.com/androiddevelopers | |
https://androidweekly.net/ | |
https://mindorks.com/ | |
https://blog.stylingandroid.com/ === Best Reading | |
https://www.reddit.com/r/androiddev/ === Users | |
https://medium.com/androiddevelopers === Android Developers | |
https://www.uplabs.com/ === Designer resources | |
https://codelabs.developers.google.com/?cat=Android === Android Practice |
OlderNewer