Last active
May 24, 2025 04:39
-
-
Save ryto147/79379c1f69ae227a776a82a5ef8cbfe1 to your computer and use it in GitHub Desktop.
Cara Membuat Aplikasi CRUD Menggunakan Realm Database
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
package="com.ryto.realmcoba"> | |
<application> | |
... | |
<activity | |
android:name=".MainForm" | |
android:label="Form" | |
android:parentActivityName=".MainActivity" | |
android:windowSoftInputMode="stateHidden" /> | |
</application> | |
</manifest> |
Comments are disabled for this gist.