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
<?xml version="1.0" encoding="utf-8"?> | |
<androidx.constraintlayout.widget.ConstraintLayout | |
android:id="@+id/container" | |
... | |
<ademar.bnindicator.BottomNavigationViewIndicator | |
... | |
app:clipableBackground="@color/colorPrimary" | |
app:targetBottomNavigation="@+id/nav_view"/> |
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
<?xml version="1.0" encoding="utf-8"?> | |
<resources> | |
<declare-styleable name="BottomNavigationViewIndicator"> | |
<attr name="targetBottomNavigation" format="reference"/> | |
<attr name="clipableBackground" format="reference|color"/> | |
</declare-styleable> | |
</resources> |
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
-Dfile.encoding=UTF-8 | |
-Didea.paths.selector=AndroidStudio | |
-Didea.platform.prefix=AndroidStudio | |
-Djava.net.preferIPv4Stack=true | |
-Djna.boot.library.path= | |
-Djna.debug_load.jna=true | |
-Djna.debug_load=true | |
-Djna.nosys=true | |
-Djsse.enableSNIExtension=false | |
-Dsun.io.useCanonCaches=false |
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
#!/bin/bash | |
API_KEY="$(perl -MURI::Escape -e 'print uri_escape(" <<< HERE YOUR API KEY >>> ");' "$2")" | |
API_SECRET="$(perl -MURI::Escape -e 'print uri_escape(" <<< HERE YOUR API SECRET >>> ");' "$2")" | |
CONSUMER_URL=$API_KEY:$API_SECRET | |
CONSUMER_URL_64=`echo -n $CONSUMER_URL | base64` | |
curl -s \ | |
-H "User-Agent: My Twitter App v1.0.23" \ | |
-H "Authorization: Basic $CONSUMER_URL_64" \ | |
--data-urlencode grant_type=client_credentials \ | |
--compressed \ |
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
*.swp |