mirror of
https://gitlab.com/lecarore/breakout71.git
synced 2025-04-20 04:05:06 -04:00
Build and deploy of version 29020161
This commit is contained in:
parent
fdccf12657
commit
f993766d11
7 changed files with 18 additions and 20 deletions
|
@ -11,8 +11,8 @@ android {
|
|||
applicationId = "me.lecaro.breakout"
|
||||
minSdk = 21
|
||||
targetSdk = 34
|
||||
versionCode = 29020156
|
||||
versionName = "29020156"
|
||||
versionCode = 29020161
|
||||
versionName = "29020161"
|
||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||
vectorDrawables {
|
||||
useSupportLibrary = true
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1,20 +1,11 @@
|
|||
package me.lecaro.breakout
|
||||
import android.content.Context
|
||||
import android.content.Intent
|
||||
import android.net.Uri
|
||||
import android.os.Bundle
|
||||
import android.util.Base64
|
||||
import android.util.Log
|
||||
import android.view.Window
|
||||
import android.view.WindowManager
|
||||
import android.webkit.ConsoleMessage
|
||||
import android.webkit.DownloadListener
|
||||
import android.webkit.JavascriptInterface
|
||||
import android.webkit.MimeTypeMap
|
||||
import android.webkit.WebChromeClient
|
||||
import android.webkit.WebView
|
||||
import java.io.File
|
||||
import java.io.FileOutputStream
|
||||
|
||||
class MainActivity : android.app.Activity() {
|
||||
override fun onCreate(savedInstanceState: Bundle?) {
|
||||
|
|
|
@ -4,6 +4,13 @@ if [[ $(node --version) != v21* ]]; then
|
|||
exit 1
|
||||
fi
|
||||
|
||||
|
||||
if grep src -rE "T[O]DO|F[I]XME|console\.log"
|
||||
then
|
||||
echo "You have left some T0D0 or logs"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
set -e
|
||||
set -x
|
||||
|
||||
|
|
6
dist/index.html
vendored
6
dist/index.html
vendored
File diff suppressed because one or more lines are too long
|
@ -1415,7 +1415,7 @@ function ballTick(ball, delta) {
|
|||
!bricks[hitBrick]) {
|
||||
bricks[hitBrick] = "black";
|
||||
ball.sapperUses++
|
||||
console.log('Sapper used')
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -1707,7 +1707,7 @@ function explodeBrick(index, ball, isExplosion) {
|
|||
console.error({points})
|
||||
debugger
|
||||
}
|
||||
console.log('Spawned a coin with ' + points + ' points')
|
||||
|
||||
coinsToSpawn -= points
|
||||
|
||||
const cx= x + (Math.random() - 0.5) * (brickWidth - coinSize),
|
||||
|
|
|
@ -1 +1 @@
|
|||
"29020156"
|
||||
"29020161"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue