Search found 10 matches
- Fri May 13, 2022 1:43 am
- Forum: General
- Topic: Android Start game as Service and alerts message Update! please
- Replies: 2
- Views: 2675
Android Start game as Service and alerts message Update! please
I need function in love2d for starting game as service in background and alerts messagess support for making chat how in android studio. Please very need this funtions
- Fri May 13, 2022 12:48 am
- Forum: Support and Development
- Topic: [Solved] Microphone won't start on Android
- Replies: 3
- Views: 4949
Re: Microphone won't start on Android
You have to try all possible combinations that works. This is the code exactly I used for testing while writing mic support for Android. local love = require("love") local recDev = nil local isRecording = -1 local soundDataTable = {} local soundDataLen = 0 local audioSource = nil local de...
- Mon May 09, 2022 9:27 pm
- Forum: Support and Development
- Topic: How I Can Start Application As Service In adnoid ?
- Replies: 0
- Views: 9190
How I Can Start Application As Service In adnoid ?
After compiling apk file a decompiling classes.dex java file when file i need to edit for starting server for using message alert and some else ? I cant find file MainActivity.java only GameActivity.xml i want applecation work in background how ? How in Andoid Studio ! I want this Option IN love2d (((
- Thu Jan 13, 2022 5:42 pm
- Forum: Support and Development
- Topic: Image twitches when moving how to fix it ?
- Replies: 2
- Views: 2439
Re: Image twitches when moving how to fix it ?
The issue is with drawing it at a decimal place most likely. Should only draw at perfect integers using something along the lines of the following: math.floor(x) -- or math.ceil(x) -- example love.graphics.draw(head, math.floor(x), math.floor(y)) This will draw it correctly than it being on the edg...
- Thu Jan 13, 2022 1:59 pm
- Forum: Support and Development
- Topic: Image twitches when moving how to fix it ?
- Replies: 2
- Views: 2439
Image twitches when moving how to fix it ?
local x = 300 local y = 300 function love.load() head = love.graphics.newImage("head.png") head:setFilter('nearest') end function love.draw() love.graphics.draw(head, x, y,0,5,5) end function love.update(deltatime) x = x + (30 * deltatime) end But when i use this camera follow library for ...
- Sat Aug 22, 2020 3:22 pm
- Forum: Support and Development
- Topic: Andoid Application Dont Work In BackGround mode ?
- Replies: 0
- Views: 6087
Andoid Application Dont Work In BackGround mode ?
TCP Data Incoming only when application is opened this my xml <?xml version="1.0" encoding="utf-8" standalone="no"?><manifest xmlns:android="http://schemas.android.com/apk/res/android" android:compileSdkVersion="23" android:compileSdkVersionCodename=...
- Sat Aug 22, 2020 3:01 pm
- Forum: Support and Development
- Topic: Andoid Apllication TCP work in backgroun ?
- Replies: 0
- Views: 5802
Andoid Apllication TCP work in backgroun ?
I create chat client With TCP
datas incoming only when application is opened
datas incoming dont work in backgroid
datas incoming only when application is opened
datas incoming dont work in backgroid
- Sat Aug 22, 2020 1:51 pm
- Forum: Support and Development
- Topic: How to Create Andoid Notification Message and icon ??
- Replies: 0
- Views: 5767
How to Create Andoid Notification Message and icon ??
How to make andoid notification message and icon ?
- Fri Aug 07, 2020 9:59 pm
- Forum: Support and Development
- Topic: portrait Mode Dont Work! Help please
- Replies: 1
- Views: 2156
portrait Mode Dont Work! Help please
Please help only Landscape mode always! Cant switch to Portrait Only! android:screenOrientation="sensorPortrait" tested android:screenOrientation="Portrait" <?xml version="1.0" encoding="utf-8" standalone="no"?> <manifest package="game.love"...
- Fri Aug 07, 2020 4:28 pm
- Forum: Support and Development
- Topic: APK Tool Compiling Dont Work! Error!
- Replies: 1
- Views: 2518
APK Tool Compiling Dont Work! Error!
Tryed by official website documentation! always error https://ibotpeaches.github.io/Apktool/install/ deleting %UserProfile%\AppData\Local\apktool\framework 1.apk dindt help! C:\apktoolmaster>apktool b -o game.apk love_decoded I: Using Apktool 2.4.1 I: Checking whether resources has changed... I: Bui...