Skip to content

Commit

Permalink
v2.5.1 updated serial id's to ensure the newer version is used (the o…
Browse files Browse the repository at this point in the history
…ld droidmate apk has to be uninstalled and removed from the temp_extracted to avoid compatibility issues)
  • Loading branch information
Hotzkow committed Jul 22, 2020
1 parent 74c084f commit e0138e4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

group = "org.droidmate"
version = "2.5.0"
version = "2.5.1"

plugins {
id("org.jetbrains.kotlin.jvm") apply true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ object DeviceConstants {

// To understand why this is constant and not a cmd line parameter, see comment in
// org.droidmate.configuration.ConfigurationBuilder.bindAndValidate()
const val UIADAEMON_SERVER_PORT = 59800
// const val UIADAEMON_SERVER_PORT = 59800

const val logcatLogFileName = "droidmate_logcat.txt"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ data class AppWindow(
val screenSize: Pair<Int, Int>
) : Serializable {
companion object {
private const val serialVersionUID: Long = -686914223 // this is "AppWindow".hashCode but it only has to be unique
private const val serialVersionUID: Long = -686914224 // this is "AppWindow".hashCode but it only has to be unique
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ open class DeviceResponse private constructor(

companion object {

const val serialVersionUID: Long = -1656574761L // "DeviceResponse".hashCode
const val serialVersionUID: Long = -1656574762L // "DeviceResponse".hashCode has to be unique, i.e. modify it when this class is modified

fun create(isSuccessful: Boolean,
uiHierarchy: List<UiElementPropertiesI>, uiDump: String, launchedActivity: String,
Expand Down

0 comments on commit e0138e4

Please sign in to comment.