Skip to content

Commit

Permalink
Implemented mouse cursor emulator for D-pad navigation
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreyPavlenko committed Aug 27, 2023
1 parent 6527310 commit ddc7e90
Show file tree
Hide file tree
Showing 16 changed files with 446 additions and 51 deletions.
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
ext {
def abi = project.properties['ABI']
VERSION_CODE = 226
VERSION_NAME = "1.9.3"
VERSION_CODE = 227
VERSION_NAME = "1.9.4"
SDK_MIN_VERSION = 23
SDK_TARGET_VERSION = 33
SDK_COMPILE_VERSION = 33
SDK_TARGET_VERSION = 34
SDK_COMPILE_VERSION = 34
BUILD_TOOLS_VERSION = "33.0.1"
ABI_FILTERS = (abi != null) ? abi.split(",") : ['arm64-v8a', 'armeabi-v7a', 'x86', 'x86_64']
localProps = gradle.ext.localProps
Expand All @@ -27,7 +27,7 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:8.1.0'
classpath 'com.android.tools.build:gradle:8.1.1'
classpath 'com.google.gms:google-services:4.3.15'
}
}
Expand Down Expand Up @@ -134,6 +134,6 @@ gradle.projectsEvaluated {
}
}

task clean(type: Delete) {
tasks.register('clean', Delete) {
delete rootProject.buildDir
}
Loading

0 comments on commit ddc7e90

Please sign in to comment.