Description: In this post, I'm gonna demonstrate tools that help solve some common problems while app development & help increase the speed as well.
So let's get started :-)
1. How to run app on phone without USB
cord.(need USB initially to make connection)
Note: Android Studio has provided a more sophisticated option to connect without USP using wireless debugging. Do check out the blog
adb kill-server && adb devices
Step 2: Run the next command to restart in tcp mode on port 5555
adb tcpip 5555
Step 3: Now disconnect your device from the system and note down your ip address of the phone from Setting > About Phone > Status.
E.g It could be something like 192.168.0.3(IP address) Now run the final command by replacing it with your IP address
adb connect 192.168.0.3:5555Bingo we're done now your device is connected and you can run it wirelessly :-)
SHA1 key is needed in many different apps containing maps or social sites authentication or using any Google apps and services. It's super useful. So the simplest way to get that is using Android Studio.2. How to find SHA1 key from android studio?
Step 1: Select the Gradle projects from the right pane and expand Tasks > Android> signingReport. (fig.1).
Note: If you do not find your project in Gradle Projects sync the project from Android Studio.
fig.1 |
Many times in our development we need icons for small things with varied colors or shape. Using Vector Asset in Android Studio we can create our icons with super ease.3. Best way to create icons for android app using vector asset.
Step 1: Right-click on app > New > Vector Asset you'll see Fig. 3. You can choose Material Icons which contains a whole lot of icons in different categories. This will create <vector> for the icon you have selected. (fig.4) in drawable folder
fig.3 |
fig.4 |
For more updates follow us on - Twitter
#codingIsAnArt
#coderconsole