Android Developers
1.22K subscribers
164 photos
4 videos
57 files
59 links
Here You Can Get Android App Development Tutorials For Free

LinkTree
https://linktr.ee/androiddeveloperspage

For Comments & Feedback
@androiddevstutorialscommentbot

Contact Me
@SE_BIBEL_MEK
Download Telegram
1
Android Developers pinned «What Did You Feel About The OpenCV Tutorial»
Android Developers pinned «OpenCV Image Resizer Sketchware Pro Project»
Android Developers YouTube Channel Reaches 40 Subscribers.

😊 Thank You 😊

@SE_BIBEL_MEK

👉 @androiddevstutorial
👍2
Sketchware Pro Nightly Version v6.4.0-SNAPSHOT-5f82376-minApi26
⚠️ Caution ⚠️

I've Tested This Sketchware Pro Nightly Build On realme RMX3381 Android13 Device & I Have Not Found Any Bugs(Except The Local Library Downloader Bug). But There May Be Some Unstablity Issues In Other Android Versions. So I Highly Recommend You To Backup Your .sketchware Folder Before Trying This One. If You Want The Latest Stable Build Of Sketchware Pro You Can Download It From Here. Otherwise Enjoy The New Features & Bug Fixes.

@SE_BIBEL_MEK

👉 @androiddevstutorial
👍1
Channel photo updated
How To Install Kotlin In Android Using Termux

Kotlin is a modern programming language developed by JetBrains, designed to be fully interoperable with Java and enhance the development experience for Android and other applications. Here are some key features of Kotlin:

* Concise Syntax: Kotlin aims to reduce boilerplate code, making it more concise and readable compared to Java.

* Null Safety: It includes built-in null safety features, helping to eliminate the risk of null pointer exceptions by distinguishing between nullable and non-nullable types.

* Interoperability: Kotlin can seamlessly interact with Java code, allowing developers to use existing Java libraries and frameworks.

In This Post We're Going To Learn How To Install Kotlin & Run Our First Kotlin Program In Android Using Termux.

Step1. If You Don't Have Termux App Installed On Your Android Device You Can Install It From Here.
Step2. After Installing Termux Open The Terminal & Install JDK (Java Development KIT) Using This Command Since Kotlin Runs On JVM(Java Virtual Machine).

pkg install openjdk

* You Can Check If JDK Is Correctly Installed On You Termux Environment Using This Command.

java --version

If It's Installed It Should Print The Version Like This.

openjdk 21.0.5 2024-10-15
OpenJDK Runtime Environment (build 21.0.5)
OpenJDK 64-Bit Server VM (build 21.0.5, mixed mode)


Step3. After Installing JDK Successfully Let's Install Kotlin Using This Command.

pkg install kotlin

* You Can Check If Kotlin Is Correctly Installed On You Termux Environment Using This Command.

kotlin -version

If It's Installed It Should Print The Version Like This.

Kotlin version 2.0.21-release-482 (JRE 21.0.5)

Step4. After Kotlin Installation Is Done Let's Create Our First Program. For Instance I've Created This One.
1
fun main(){
println("Hello Android Developers")
}