Skip to content

Commit 0221b4f

Browse files
Remove note and architecture section from README
1 parent 2a6b82b commit 0221b4f

File tree

2 files changed

+4
-14
lines changed

2 files changed

+4
-14
lines changed

README.md

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ Android Studio Tutorials: Java Edition provides practical examples and complete
1010

1111
Our app is designed to be easy to use and lightweight. Plus, it's free and open‑source!
1212

13-
> **Note:** This project is built solely with Java and XML. Kotlin and Jetpack Compose are not used.
14-
1513
## Features
1614

1715
- Java and XML code examples
@@ -43,18 +41,6 @@ Our app is designed to be easy to use and lightweight. Plus, it's free and open
4341

4442
Download Android Studio Tutorials: Java Edition from the Google Play Store and begin your Android development journey today. It's free, easy to use, and perfect for beginners.
4543

46-
## Architecture
47-
48-
The app follows the modern layered architecture recommended by Google. The UI layer observes
49-
immutable state from ViewModels. Business logic is encapsulated in use case classes within the
50-
domain layer, which interact with repositories in the data layer. Each screen now exposes its
51-
operations through a small set of use cases. This pattern was inspired by the
52-
[Android Clean Architecture](https://github.com/android10/Android-CleanArchitecture) sample but
53-
implemented in a simplified form to avoid adding heavy dependencies. The result keeps the UI
54-
simple and ensures a clear separation of concerns across the whole app.
55-
56-
For detailed guidance, see [Recommendations for Android architecture](docs/core/android-architecture-recommendations.md).
57-
5844
## Feedback
5945

6046
We are constantly updating and improving Android Studio Tutorials: Java Edition to give you the best possible experience. If you have suggested features or improvements, please leave a review. If something isn't working correctly, let us know so we can fix it.

app/src/main/AndroidManifest.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -390,6 +390,10 @@
390390
android:name="com.google.android.gms.ads.APPLICATION_ID"
391391
android:value="ca-app-pub-5294151573817700~1436412543" />
392392

393+
<meta-data
394+
android:name="com.google.android.gms.ads.flag.NATIVE_AD_DEBUGGER_ENABLED"
395+
android:value="false" />
396+
393397
<meta-data
394398
android:name="firebase_performance_logcat_enabled"
395399
android:value="true" />

0 commit comments

Comments
 (0)