|
GRUPOS DE DISCUSSÃO PROFISSIONAL WINDEV, WEBDEV e WINDEV Mobile |
| | | | | |
| Inicio → WINDEV 25 → Windev Mobile - Download and install Android SDK?API?35 |
| Windev Mobile - Download and install Android SDK API 35 |
| Iniciado por Boller, jul., 21 2025 7:37 PM - Sem resposta |
| |
| | | |
|
| |
Membro registado 4.618 mensagems |
|
| Publicado em julho, 21 2025 - 7:37 PM |
Good Morning
Here’s how to download and install Android SDK API 35 (Android 15 – “Vanilla Ice Cream”):
⸻
📥 Download & Install Instructions
1. Via Android Studio (download and install Android Studio)
https://developer.android.com/studio
Button
Download Android Studio
After install, open Android Studio:
The easiest approach is directly within Android Studio: 1. Open Tools → SDK Manager. 2. Switch to the SDK Platforms tab, enable “Show Package Details.” 3. Expand Android API 35, then tick Android SDK Platform 35. 4. Switch to the SDK Tools tab, expand Android SDK Build‑Tools 35, and select the latest revision. 5. Click OK to download and install  .
2. Using SDK Command‐Line Tools
If you prefer command line:
sdkmanager "platforms;android-35" "build-tools;35.0.x"
Ensure you have the latest Android SDK Command‑Line Tools first, as required to access new platforms .
⸻
💡 Additional Info • API 35 corresponds to Android 15, stable since June 2024 . • New apps and updates must target API level 35 or higher on Google Play after August 31, 2025 .
⸻
🎥 Step-by-Step Setup Video
⸻
🔧 Troubleshooting & Tips • If SDK Platform 35 doesn’t show up, update the SDK Tools first (Android Studio or sdkmanager) . • You can also download ADB/fastboot separately from the Platform‑Tools package, though Studio auto-updates those . • For source code browsing, browse or download the Android SDK source package for API 35 from GitHub repositories like android-sdk-sources-for-api-level-35 .
⸻
Awesome! Let’s walk through everything you need to get started with Android development after installing Android Studio. This includes:
⸻
✅ 1. Set up your SDK (compileSdkVersion 35)
After installing Android Studio:
Open SDK Manager: • Go to Tools → SDK Manager • In the SDK Platforms tab: • Check ✅ Android 15.0 (API Level 35) • Expand it and make sure: • ✔️ “SDK Platform” • ✔️ “Sources for Android 15” • ✔️ “Google APIs” are all selected. • In the SDK Tools tab: • Check ✔️ “Android SDK Build-Tools 35.x” • Optional: Install “NDK” if working with C/C++
Click Apply → Android Studio will download all components for API 35.
⸻
✅ 2. Create Your First Project 1. Start Android Studio 2. Click “New Project” 3. Select “Empty Activity” or Jetpack Compose Activity 4. Configure: • Name: MyFirstApp • Package: com.example.myfirstapp • Save location: Choose any folder • Language: Kotlin (or Java) • Minimum SDK: Choose API 24+ (or what your audience requires) 5. Click Finish
📦 Check your build.gradle:
Make sure it includes:
android { compileSdkVersion 35 defaultConfig { minSdkVersion 24 targetSdkVersion 35 } }
⸻
✅ 3. Create and Launch Emulator 1. Go to Tools → Device Manager 2. Click + Create Device 3. Choose a device (e.g., Pixel 7) 4. Select a system image: • Click “Download” next to API 35 x86_64 image • Choose Google APIs (recommended) 5. Click Next → give your emulator a name → Finish 6. Click the Play ▶️ button to launch it.
Your emulator will boot like a regular Android device. You can drag and drop .apk files onto it, or run your app directly from Android Studio.
⸻
✅ 4. Run Your App • Click the green ▶️ Run button in Android Studio (top-right). • Choose your emulator or connected physical device. • Android Studio will build and deploy the app.
If all is well, you’ll see your app open on the emulator. 🎉
⸻
✅ 5. Optional: Enable Live Preview with Jetpack Compose
If using Compose: 1. Switch to Design or Split tab in MainActivity.kt 2. Use:
@Preview(showBackground = true) @Composable fun GreetingPreview() { Greeting("Android") }
It lets you see real-time changes as you code!
⸻
🔧 Extras and Tools
Tool Purpose adb devices See if your device/emulator is connected adb install app.apk Install APK via command line Logcat Debug your app with logs Profiler Inspect memory, CPU, network Emulator controls Simulate camera, GPS, SMS, battery, etc
⸻
Would you like help with: • 🔧 Configuring signing keys and APK build? • 🚀 Publishing to Google Play? • 🤖 Using Jetpack Compose or Material 3? • ⚙️ Setting up CI/CD or GitHub Actions?
-- Adriano José Boller ______________________________________________ Consultor e Representante Oficial da PcSoft no Brasil +55 (41) 99949 1800 adrianoboller@gmail.com skype: adrianoboller http://wxinformatica.com.br/ |
| |
| |
| | | |
|
| | | | |
| | |
| | |
| |
|
|
|