Skip to content

Commit

Permalink
Version 2.0.70-alpha
Browse files Browse the repository at this point in the history
- Add force stop
  • Loading branch information
dtmilano committed Feb 25, 2024
1 parent 4ce1987 commit 804d045
Show file tree
Hide file tree
Showing 34 changed files with 372 additions and 97 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ android {
applicationId "com.dtmilano.android.culebratester2"
minSdk 26
targetSdk 33
versionCode 20069
versionName "2.0.69-alpha"
versionCode 20070
versionName "2.0.70-alpha"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/io/swagger/server/models/AnyValue.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* CulebraTester
* ## Snaky Android Test --- If you want to be able to try out the API using the **Execute** or **TRY** button from this page - an android device should be connected using `adb` - the server should have been started using `./culebratester2 start-server` then you will be able to invoke the API and see the responses.
*
* OpenAPI spec version: 2.0.68
* OpenAPI spec version: 2.0.70
*
*
* NOTE: This class is auto generated by the swagger code generator program.
Expand Down
14 changes: 10 additions & 4 deletions app/src/main/java/io/swagger/server/models/BooleanResponse.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* CulebraTester
* ## Snaky Android Test --- If you want to be able to try out the API using the **Execute** or **TRY** button from this page - an android device should be connected using `adb` - the server should have been started using `./culebratester2 start-server` then you will be able to invoke the API and see the responses.
*
* OpenAPI spec version: 2.0.68
* OpenAPI spec version: 2.0.70
*
*
* NOTE: This class is auto generated by the swagger code generator program.
Expand All @@ -12,9 +12,15 @@


/**
* * @param name the name of the contained value * @param value the value*/
data class BooleanResponse ( /* the name of the contained value */
val name: kotlin.String, /* the value */
*
* @param name the name of the contained value
* @param value the value
*/
data class BooleanResponse (

/* the name of the contained value */
val name: kotlin.String,
/* the value */
val value: kotlin.Boolean
) {
}
10 changes: 7 additions & 3 deletions app/src/main/java/io/swagger/server/models/ClickBody.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* CulebraTester
* ## Snaky Android Test --- If you want to be able to try out the API using the **Execute** or **TRY** button from this page - an android device should be connected using `adb` - the server should have been started using `./culebratester2 start-server` then you will be able to invoke the API and see the responses.
*
* OpenAPI spec version: 2.0.68
* OpenAPI spec version: 2.0.70
*
*
* NOTE: This class is auto generated by the swagger code generator program.
Expand All @@ -13,7 +13,11 @@
import io.swagger.server.models.Point

/**
* * @param points */
data class ClickBody ( val points: kotlin.Array<Point>? = null
*
* @param points
*/
data class ClickBody (

val points: kotlin.Array<Point>? = null
) {
}
12 changes: 9 additions & 3 deletions app/src/main/java/io/swagger/server/models/CulebraInfo.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* CulebraTester
* ## Snaky Android Test --- If you want to be able to try out the API using the **Execute** or **TRY** button from this page - an android device should be connected using `adb` - the server should have been started using `./culebratester2 start-server` then you will be able to invoke the API and see the responses.
*
* OpenAPI spec version: 2.0.68
* OpenAPI spec version: 2.0.70
*
*
* NOTE: This class is auto generated by the swagger code generator program.
Expand All @@ -12,7 +12,13 @@


/**
* * @param versionName * @param versionCode */
data class CulebraInfo ( val versionName: kotlin.String, val versionCode: kotlin.Int
*
* @param versionName
* @param versionCode
*/
data class CulebraInfo (

val versionName: kotlin.String,
val versionCode: kotlin.Int
) {
}
11 changes: 8 additions & 3 deletions app/src/main/java/io/swagger/server/models/CurrentPackageName.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* CulebraTester
* ## Snaky Android Test --- If you want to be able to try out the API using the **Execute** or **TRY** button from this page - an android device should be connected using `adb` - the server should have been started using `./culebratester2 start-server` then you will be able to invoke the API and see the responses.
*
* OpenAPI spec version: 2.0.68
* OpenAPI spec version: 2.0.70
*
*
* NOTE: This class is auto generated by the swagger code generator program.
Expand All @@ -12,7 +12,12 @@


/**
* * @param currentPackageName the current package name*/
data class CurrentPackageName ( /* the current package name */ val currentPackageName: kotlin.String? = null
*
* @param currentPackageName the current package name
*/
data class CurrentPackageName (

/* the current package name */
val currentPackageName: kotlin.String? = null
) {
}
11 changes: 8 additions & 3 deletions app/src/main/java/io/swagger/server/models/DisplayHeight.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* CulebraTester
* ## Snaky Android Test --- If you want to be able to try out the API using the **Execute** or **TRY** button from this page - an android device should be connected using `adb` - the server should have been started using `./culebratester2 start-server` then you will be able to invoke the API and see the responses.
*
* OpenAPI spec version: 2.0.68
* OpenAPI spec version: 2.0.70
*
*
* NOTE: This class is auto generated by the swagger code generator program.
Expand All @@ -12,7 +12,12 @@


/**
* * @param displayHeight the current display height*/
data class DisplayHeight ( /* the current display height */ val displayHeight: kotlin.Int? = null
*
* @param displayHeight the current display height
*/
data class DisplayHeight (

/* the current display height */
val displayHeight: kotlin.Int? = null
) {
}
24 changes: 21 additions & 3 deletions app/src/main/java/io/swagger/server/models/DisplayRealSize.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* CulebraTester
* ## Snaky Android Test --- If you want to be able to try out the API using the **Execute** or **TRY** button from this page - an android device should be connected using `adb` - the server should have been started using `./culebratester2 start-server` then you will be able to invoke the API and see the responses.
*
* OpenAPI spec version: 2.0.68
* OpenAPI spec version: 2.0.70
*
*
* NOTE: This class is auto generated by the swagger code generator program.
Expand All @@ -12,7 +12,25 @@


/**
* * @param device * @param x * @param y * @param artWidth * @param artHeight * @param screenshotWidth * @param screenshotX * @param screenshotY */
data class DisplayRealSize ( val device: kotlin.String, val x: kotlin.Int, val y: kotlin.Int, val artWidth: kotlin.Int? = null, val artHeight: kotlin.Int? = null, val screenshotWidth: kotlin.Int? = null, val screenshotX: kotlin.Int? = null, val screenshotY: kotlin.Int? = null
*
* @param device
* @param x
* @param y
* @param artWidth
* @param artHeight
* @param screenshotWidth
* @param screenshotX
* @param screenshotY
*/
data class DisplayRealSize (

val device: kotlin.String,
val x: kotlin.Int,
val y: kotlin.Int,
val artWidth: kotlin.Int? = null,
val artHeight: kotlin.Int? = null,
val screenshotWidth: kotlin.Int? = null,
val screenshotX: kotlin.Int? = null,
val screenshotY: kotlin.Int? = null
) {
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* CulebraTester
* ## Snaky Android Test --- If you want to be able to try out the API using the **Execute** or **TRY** button from this page - an android device should be connected using `adb` - the server should have been started using `./culebratester2 start-server` then you will be able to invoke the API and see the responses.
*
* OpenAPI spec version: 2.0.68
* OpenAPI spec version: 2.0.70
*
*
* NOTE: This class is auto generated by the swagger code generator program.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* CulebraTester
* ## Snaky Android Test --- If you want to be able to try out the API using the **Execute** or **TRY** button from this page - an android device should be connected using `adb` - the server should have been started using `./culebratester2 start-server` then you will be able to invoke the API and see the responses.
*
* OpenAPI spec version: 2.0.68
* OpenAPI spec version: 2.0.70
*
*
* NOTE: This class is auto generated by the swagger code generator program.
Expand All @@ -13,7 +13,11 @@
import io.swagger.server.models.DisplayRotationEnum

/**
* the display rotation response * @param displayRotation */
data class DisplayRotationResponse ( val displayRotation: DisplayRotationEnum? = null
* the display rotation response
* @param displayRotation
*/
data class DisplayRotationResponse (

val displayRotation: DisplayRotationEnum? = null
) {
}
14 changes: 11 additions & 3 deletions app/src/main/java/io/swagger/server/models/DisplaySizeDp.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* CulebraTester
* ## Snaky Android Test --- If you want to be able to try out the API using the **Execute** or **TRY** button from this page - an android device should be connected using `adb` - the server should have been started using `./culebratester2 start-server` then you will be able to invoke the API and see the responses.
*
* OpenAPI spec version: 2.0.68
* OpenAPI spec version: 2.0.70
*
*
* NOTE: This class is auto generated by the swagger code generator program.
Expand All @@ -12,7 +12,15 @@


/**
* * @param displaySizeDpX the display x in DP * @param displaySizeDpY the display y in DP*/
data class DisplaySizeDp ( /* the display x in DP */ val displaySizeDpX: kotlin.Int? = null, /* the display y in DP */ val displaySizeDpY: kotlin.Int? = null
*
* @param displaySizeDpX the display x in DP
* @param displaySizeDpY the display y in DP
*/
data class DisplaySizeDp (

/* the display x in DP */
val displaySizeDpX: kotlin.Int? = null,
/* the display y in DP */
val displaySizeDpY: kotlin.Int? = null
) {
}
11 changes: 8 additions & 3 deletions app/src/main/java/io/swagger/server/models/DisplayWidth.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* CulebraTester
* ## Snaky Android Test --- If you want to be able to try out the API using the **Execute** or **TRY** button from this page - an android device should be connected using `adb` - the server should have been started using `./culebratester2 start-server` then you will be able to invoke the API and see the responses.
*
* OpenAPI spec version: 2.0.68
* OpenAPI spec version: 2.0.70
*
*
* NOTE: This class is auto generated by the swagger code generator program.
Expand All @@ -12,7 +12,12 @@


/**
* * @param displayWidth the current display width*/
data class DisplayWidth ( /* the current display width */ val displayWidth: kotlin.Int? = null
*
* @param displayWidth the current display width
*/
data class DisplayWidth (

/* the current display width */
val displayWidth: kotlin.Int? = null
) {
}
10 changes: 7 additions & 3 deletions app/src/main/java/io/swagger/server/models/Help.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* CulebraTester
* ## Snaky Android Test --- If you want to be able to try out the API using the **Execute** or **TRY** button from this page - an android device should be connected using `adb` - the server should have been started using `./culebratester2 start-server` then you will be able to invoke the API and see the responses.
*
* OpenAPI spec version: 2.0.68
* OpenAPI spec version: 2.0.70
*
*
* NOTE: This class is auto generated by the swagger code generator program.
Expand All @@ -12,7 +12,11 @@


/**
* * @param text */
data class Help ( val text: kotlin.String
*
* @param text
*/
data class Help (

val text: kotlin.String
) {
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* CulebraTester
* ## Snaky Android Test --- If you want to be able to try out the API using the **Execute** or **TRY** button from this page - an android device should be connected using `adb` - the server should have been started using `./culebratester2 start-server` then you will be able to invoke the API and see the responses.
*
* OpenAPI spec version: 2.0.68
* OpenAPI spec version: 2.0.70
*
*
* NOTE: This class is auto generated by the swagger code generator program.
Expand All @@ -13,7 +13,13 @@
import io.swagger.server.models.AnyValue

/**
* * @param obj * @param oid */
data class InlineResponse200 ( val obj: AnyValue? = null, val oid: kotlin.Int? = null
*
* @param obj
* @param oid
*/
data class InlineResponse200 (

val obj: AnyValue? = null,
val oid: kotlin.Int? = null
) {
}
11 changes: 8 additions & 3 deletions app/src/main/java/io/swagger/server/models/LastTraversedText.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* CulebraTester
* ## Snaky Android Test --- If you want to be able to try out the API using the **Execute** or **TRY** button from this page - an android device should be connected using `adb` - the server should have been started using `./culebratester2 start-server` then you will be able to invoke the API and see the responses.
*
* OpenAPI spec version: 2.0.68
* OpenAPI spec version: 2.0.70
*
*
* NOTE: This class is auto generated by the swagger code generator program.
Expand All @@ -12,7 +12,12 @@


/**
* * @param lastTraversedText text of the last traversal event, else return an empty string*/
data class LastTraversedText ( /* text of the last traversal event, else return an empty string */ val lastTraversedText: kotlin.String? = null
*
* @param lastTraversedText text of the last traversal event, else return an empty string
*/
data class LastTraversedText (

/* text of the last traversal event, else return an empty string */
val lastTraversedText: kotlin.String? = null
) {
}
14 changes: 11 additions & 3 deletions app/src/main/java/io/swagger/server/models/Locale.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* CulebraTester
* ## Snaky Android Test --- If you want to be able to try out the API using the **Execute** or **TRY** button from this page - an android device should be connected using `adb` - the server should have been started using `./culebratester2 start-server` then you will be able to invoke the API and see the responses.
*
* OpenAPI spec version: 2.0.68
* OpenAPI spec version: 2.0.70
*
*
* NOTE: This class is auto generated by the swagger code generator program.
Expand All @@ -12,7 +12,15 @@


/**
* * @param language * @param country * @param variant */
data class Locale ( val language: kotlin.String, val country: kotlin.String? = null, val variant: kotlin.String? = null
*
* @param language
* @param country
* @param variant
*/
data class Locale (

val language: kotlin.String,
val country: kotlin.String? = null,
val variant: kotlin.String? = null
) {
}
14 changes: 10 additions & 4 deletions app/src/main/java/io/swagger/server/models/NumberResponse.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* CulebraTester
* ## Snaky Android Test --- If you want to be able to try out the API using the **Execute** or **TRY** button from this page - an android device should be connected using `adb` - the server should have been started using `./culebratester2 start-server` then you will be able to invoke the API and see the responses.
*
* OpenAPI spec version: 2.0.68
* OpenAPI spec version: 2.0.70
*
*
* NOTE: This class is auto generated by the swagger code generator program.
Expand All @@ -12,9 +12,15 @@


/**
* * @param name the name of the contained value * @param value the number*/
data class NumberResponse ( /* the name of the contained value */
val name: kotlin.String, /* the number */
*
* @param name the name of the contained value
* @param value the number
*/
data class NumberResponse (

/* the name of the contained value */
val name: kotlin.String,
/* the number */
val value: java.math.BigDecimal
) {
}
Loading

0 comments on commit 804d045

Please sign in to comment.