Skip to content

Commit

Permalink
maintenance
Browse files Browse the repository at this point in the history
  • Loading branch information
rgocal committed Nov 13, 2018
1 parent 9bcb3e7 commit 628ca5b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 15 deletions.
8 changes: 2 additions & 6 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@ android {
defaultConfig {
minSdkVersion 23
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
versionCode 2
versionName "1.02"
}
buildTypes {
release {
Expand All @@ -20,7 +19,4 @@ android {
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@
import android.graphics.PorterDuff;
import android.graphics.Rect;
import android.graphics.drawable.Drawable;
import android.graphics.drawable.GradientDrawable;
import android.support.v4.content.ContextCompat;
import android.support.v4.graphics.drawable.DrawableCompat;
import android.util.DisplayMetrics;
import android.view.Gravity;
import android.view.LayoutInflater;
Expand Down
4 changes: 0 additions & 4 deletions example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ android {
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
Expand All @@ -23,8 +22,5 @@ dependencies {
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:design:28.0.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation project(':app')
}
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ protected void onCreate(Bundle savedInstanceState) {
mQuickAction.setHasTitles(true);

//Not working yet...
mQuickAction.setScrollColor(R.color.orange);
mQuickAction.setTrackColor(R.color.orange);
mQuickAction.setBodyColor(R.color.orange);
//mQuickAction.setScrollColor(R.color.orange);
//mQuickAction.setTrackColor(R.color.orange);
//mQuickAction.setBodyColor(R.color.orange);

//Add the actions to the popup menu
//Try adding if statements sometime to control what actions are present to the menu!
Expand Down

0 comments on commit 628ca5b

Please sign in to comment.