link to source (android tools project site)
dependencies {
compile 'com.android.support:support-annotations:22.2.0'
}
link to source (android tools project site)
dependencies {
compile 'com.android.support:support-annotations:22.2.0'
}
link to source (android tools project site)
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
....
| # Retrofit, OkHttp, Gson | |
| -keepattributes *Annotation* | |
| -keepattributes Signature | |
| -keep class com.squareup.okhttp.** { *; } | |
| -keep interface com.squareup.okhttp.** { *; } | |
| -dontwarn com.squareup.okhttp.** | |
| -dontwarn rx.** | |
| -dontwarn retrofit.** | |
| -keep class retrofit.** { *; } | |
| -keepclasseswithmembers class * { |
| # add lines below to a "~/.bashrc" file | |
| # or save this file for example in "~/" folder | |
| # and include file in "~/.bashrc": | |
| # if [ -f ~/.git_branch_in_prompt.sh ]; then | |
| # . ~/.git_branch_in_prompt.sh | |
| # fi | |
| RED='\[\033[1;31m\]' | |
| YELLOW='\[\033[1;33m\]' | |
| GREEN='\[\033[1;32m\]' |
Disable chmode change detection:
git config core.fileMode false
git -c core.fileMode=false status //for single command
Check which branches are merged:
git checkout master
git branch --merged
Check which branches are NOT merged:
git branch --no-merged