Posts by Lucas Lentz • 311 points
4 posts
-
12
votes1
answer19086
viewsA: Someone can explain to me the process of generating an apk in React Native
To generate an apk ~Signed~ you must first generate the . Keystore. This step is very simple. Just go to where you put your jdk (C:\Program Files\Java\jdkx.x.x_x\bin - in this case I did with…
react-nativeanswered Lucas Lentz 311 -
0
votes1
answer82
viewsA: How do I check if the device has virtual buttons?
You can check if the device has the "virtual" button using the hasPermanentMenuKey android. Example: ViewConfiguration.get(context).hasPermanentMenuKey(); // retorna true | false…
androidanswered Lucas Lentz 311 -
5
votes4
answers1870
viewsA: What are Progressive Web Apps?
PWA are experience Features that a web application can provide to the user so that it is similar to a native application. The fact that the application is Progressive is that as the user is using…
-
1
votes1
answer179
viewsA: Handling of JAVA Attributes
You can assign the values of X and Y to Z and W respectively by creating a constructor in the Parent class: public Quadrilateros(double x, double y) { this.x = x; this.y = y; this.z = x; this.w = y;…