Alt + 127
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
{ | |
"eventId": 1, | |
"name": "Junior Cesar Abreu", | |
"email": "[email protected]" | |
} |
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
#!/usr/bin/env bash | |
git branch -r | grep -v '\->' | while read remote; do git branch --track "${remote#origin/}" "$remote"; done | |
git fetch --all | |
git pull --all |
https://www.venturus.org.br/acesso-a-arquivos-usando-armazenamento-por-escopo-no-android-10/
@RequiresApi(api = Build.VERSION_CODES.Q)
@NotNull
public static Uri saveFileToDownload(@NotNull Context context, File file, String mimeType) throws IOException {
ContentValues contentValues = new ContentValues();
contentValues.put(MediaStore.Downloads.DISPLAY_NAME, file.getName());
contentValues.put(MediaStore.Downloads.MIME_TYPE, mimeType);
Add the following config to app's proguard-rules.pro
file:
-keepattributes *Annotation*
-keepattributes SourceFile,LineNumberTable
# prevent Crashlytics obfuscation
-keep class com.google.firebase.crashlytics.** { *; }
-dontwarn com.google.firebase.crashlytics.**
https://www.sitepoint.com/mime-types-complete-list/
Suffixes applicable | Media type and subtype(s) |
---|---|
.3dm | x-world/x-3dmf |
.3dmf | x-world/x-3dmf |
.a | application/octet-stream |
.aab | application/x-authorware-bin |
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
# Ignoring all of the external "org" libraries | |
# (for example org.apache & org.jackson) | |
-keep class org.** { *; } | |
-dontwarn org.** | |
# Have more? Simply add them like the one above, | |
# and change to the desired package name. |
https://qualquer-site.com.br#:~:text=INITIAL_TEXT_SEQUENCE,FINAL_TEXT_SEQUENCE
Fonte: https://github.com/WICG/scroll-to-text-fragment/
NewerOlder