-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
app_process showed "Aborted" when executing by adb command #2
Comments
Hi @WuDi-ZhanShen , |
Hi @WuDi-ZhanShen ,
|
If you add "multiDexEnabled false" into the build.gradle(:app) file, the app-release.apk will contain only one classes.dex. I hope that will help you. |
It works. Thank you very much @WuDi-ZhanShen BTW, I am wondering where I can get the values for variable of |
The HDMI converter you mentioned doesn't belong to hid devices. Hid means human input device such as keyboard, mouse, koystick, touchscreen, gamepad. And "uhid" is a Linux API which allows us to simulate hid devices using hid descriptions. However, I didn't use the "uhid" as the primary work mode but the"uinput", which is also a Linux api to simulate input devices but has better performance in this situation of using gyro in MC. If you want to get some more hid descriptions such as keyboard, mouse, gamepad, you can check my project named "uhid-purejava", or check this website: https://www.usbzh.com/article/detail-525.html . And you can go deeper into the source code of Linux kernel to find out any information you want about uhid. |
Hi @WuDi-ZhanShen
![Screenshot_20230802-213829_MC Gyro](https://private-user-images.githubusercontent.com/42001611/257848832-a8e57933-41c2-42dc-b75e-b383fc7f3a93.jpg?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MzkwODc5MTgsIm5iZiI6MTczOTA4NzYxOCwicGF0aCI6Ii80MjAwMTYxMS8yNTc4NDg4MzItYThlNTc5MzMtNDFjMi00MmRjLWI3NWUtYjM4M2ZjN2YzYTkzLmpwZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMDklMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjA5VDA3NTMzOFomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTBjNjM1YjViNjRjOTA3ZjYyNWQ2MGM0ZGQzMjY2NzM1ZjFhZDU3OGZjY2I3YjcwMWY3NDMzN2RjNzM0MzAxYzcmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.mFyK2UF20PVXe0bDNESNqB-aH5Ly7rUWyNJ0Xxj0WUY)
Thank you for creating and sharing this project. It is very impresive.
I have cloned, built and launched app successfully on my Samsung phone with Android 12 version (No root).
However, I saw nothing after running the adb command to start it.
adb shell sh /storage/emulated/0/Android/data/com.tile.tuoluoyi/files/starter.sh
I tried to remove
> /dev/null 2>&1 &
in the command ofapp_process
to see if there is any message and saw only "Aborted"Hope I could get your feedback and advices for this.
Thank you!
The text was updated successfully, but these errors were encountered: