Skip to content

Commit

Permalink
fixes issue in highlighting selected element.
Browse files Browse the repository at this point in the history
  • Loading branch information
jsalatas committed Sep 26, 2018
1 parent 5bf5048 commit 9000b2c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion HandsFreeWear/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.4'
classpath 'com.android.tools.build:gradle:3.2.0'


// NOTE: Do not place your gr.ictpro.jsalatas.handsfreewear.application dependencies here; they belong
Expand Down
8 changes: 4 additions & 4 deletions HandsFreeWear/wear/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ android {
compileSdkVersion 27
defaultConfig {
applicationId "gr.ictpro.jsalatas.handsfreewear"
minSdkVersion 25
minSdkVersion 26
targetSdkVersion 27
versionCode 5
versionName "0.4.1"
versionCode 6
versionName "0.4.2"
}
buildTypes {
release {
Expand All @@ -19,7 +19,7 @@ android {

dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.google.android.gms:play-services-wearable:15.0.1'
implementation 'com.google.android.gms:play-services-wearable:16.0.0'
implementation 'com.google.android.support:wearable:2.3.0'
implementation 'com.android.support:percent:27.1.1'
implementation 'com.android.support:support-v4:27.1.1'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ private void showOverlay(AccessibilityNodeInfo selected) {
WindowManager.LayoutParams overlayParams = new WindowManager.LayoutParams(
width, height,
xpos, ypos,
WindowManager.LayoutParams.TYPE_SYSTEM_OVERLAY,
WindowManager.LayoutParams.TYPE_APPLICATION_OVERLAY,
WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE,
format);

Expand Down

0 comments on commit 9000b2c

Please sign in to comment.