commit 6dca9aa367372039528232d9d1819eb30f919be7 Author: novanuranggraini_e41211952 Date: Fri Aug 8 17:28:59 2025 +0700 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..aa724b7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,15 @@ +*.iml +.gradle +/local.properties +/.idea/caches +/.idea/libraries +/.idea/modules.xml +/.idea/workspace.xml +/.idea/navEditor.xml +/.idea/assetWizardSettings.xml +.DS_Store +/build +/captures +.externalNativeBuild +.cxx +local.properties diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/.idea/.name b/.idea/.name new file mode 100644 index 0000000..1a9688d --- /dev/null +++ b/.idea/.name @@ -0,0 +1 @@ +siamo-v2 \ No newline at end of file diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 0000000..b589d56 --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/gradle.xml b/.idea/gradle.xml new file mode 100644 index 0000000..ae388c2 --- /dev/null +++ b/.idea/gradle.xml @@ -0,0 +1,20 @@ + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..9f71c83 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,10 @@ + + + + + + + + + \ No newline at end of file diff --git a/app/.gitignore b/app/.gitignore new file mode 100644 index 0000000..42afabf --- /dev/null +++ b/app/.gitignore @@ -0,0 +1 @@ +/build \ No newline at end of file diff --git a/app/build.gradle b/app/build.gradle new file mode 100644 index 0000000..11c4d57 --- /dev/null +++ b/app/build.gradle @@ -0,0 +1,50 @@ +plugins { + id 'com.android.application' + id 'com.google.gms.google-services' +} + +android { + namespace 'com.example.siamo_v2' + compileSdk 33 + + defaultConfig { + applicationId "com.example.siamo_v2" + minSdk 24 + targetSdk 33 + versionCode 1 + versionName "1.0" + + testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" + } + + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' + } + } + + compileOptions { + sourceCompatibility JavaVersion.VERSION_1_8 + targetCompatibility JavaVersion.VERSION_1_8 + } +} + +dependencies { + implementation 'androidx.appcompat:appcompat:1.6.1' + implementation 'com.google.android.material:material:1.9.0' + implementation 'androidx.constraintlayout:constraintlayout:2.1.4' + implementation 'androidx.webkit:webkit:1.7.0' + + // Firebase + implementation 'com.google.firebase:firebase-messaging:23.1.2' + + // Retrofit + implementation 'com.squareup.retrofit2:retrofit:2.9.0' + implementation 'com.squareup.retrofit2:converter-gson:2.9.0' + + // Testing + testImplementation 'junit:junit:4.13.2' + androidTestImplementation 'androidx.test.ext:junit:1.1.5' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1' +} diff --git a/app/google-services.json b/app/google-services.json new file mode 100644 index 0000000..968ac50 --- /dev/null +++ b/app/google-services.json @@ -0,0 +1,48 @@ +{ + "project_info": { + "project_number": "562522795076", + "project_id": "siamon-9e81e", + "storage_bucket": "siamon-9e81e.firebasestorage.app" + }, + "client": [ + { + "client_info": { + "mobilesdk_app_id": "1:562522795076:android:01f52cbb9d11eb362de011", + "android_client_info": { + "package_name": "com.example.siamo" + } + }, + "oauth_client": [], + "api_key": [ + { + "current_key": "AIzaSyCt1kBJBzXtYJU-m1YXNoiiR0oI54uM6h0" + } + ], + "services": { + "appinvite_service": { + "other_platform_oauth_client": [] + } + } + }, + { + "client_info": { + "mobilesdk_app_id": "1:562522795076:android:d4405977533e28832de011", + "android_client_info": { + "package_name": "com.example.siamo_v2" + } + }, + "oauth_client": [], + "api_key": [ + { + "current_key": "AIzaSyCt1kBJBzXtYJU-m1YXNoiiR0oI54uM6h0" + } + ], + "services": { + "appinvite_service": { + "other_platform_oauth_client": [] + } + } + } + ], + "configuration_version": "1" +} \ No newline at end of file diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro new file mode 100644 index 0000000..481bb43 --- /dev/null +++ b/app/proguard-rules.pro @@ -0,0 +1,21 @@ +# Add project specific ProGuard rules here. +# You can control the set of applied configuration files using the +# proguardFiles setting in build.gradle. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# If your project uses WebView with JS, uncomment the following +# and specify the fully qualified class name to the JavaScript interface +# class: +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { +# public *; +#} + +# Uncomment this to preserve the line number information for +# debugging stack traces. +#-keepattributes SourceFile,LineNumberTable + +# If you keep the line number information, uncomment this to +# hide the original source file name. +#-renamesourcefileattribute SourceFile \ No newline at end of file diff --git a/app/src/androidTest/java/com/example/siamo_v2/ExampleInstrumentedTest.java b/app/src/androidTest/java/com/example/siamo_v2/ExampleInstrumentedTest.java new file mode 100644 index 0000000..8965ec9 --- /dev/null +++ b/app/src/androidTest/java/com/example/siamo_v2/ExampleInstrumentedTest.java @@ -0,0 +1,26 @@ +package com.example.siamo_v2; + +import android.content.Context; + +import androidx.test.platform.app.InstrumentationRegistry; +import androidx.test.ext.junit.runners.AndroidJUnit4; + +import org.junit.Test; +import org.junit.runner.RunWith; + +import static org.junit.Assert.*; + +/** + * Instrumented test, which will execute on an Android device. + * + * @see Testing documentation + */ +@RunWith(AndroidJUnit4.class) +public class ExampleInstrumentedTest { + @Test + public void useAppContext() { + // Context of the app under test. + Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext(); + assertEquals("com.example.siamo_v2", appContext.getPackageName()); + } +} \ No newline at end of file diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..d930e65 --- /dev/null +++ b/app/src/main/AndroidManifest.xml @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/app/src/main/java/com/example/siamo_v2/MainActivity.java b/app/src/main/java/com/example/siamo_v2/MainActivity.java new file mode 100644 index 0000000..ed0c07a --- /dev/null +++ b/app/src/main/java/com/example/siamo_v2/MainActivity.java @@ -0,0 +1,223 @@ +package com.example.siamo_v2; + +import android.content.ActivityNotFoundException; +import android.content.Context; +import android.content.Intent; +import android.net.ConnectivityManager; +import android.net.NetworkInfo; +import android.net.Uri; +import android.os.Bundle; +import android.view.View; +import android.webkit.WebChromeClient; +import android.webkit.WebResourceRequest; +import android.webkit.WebSettings; +import android.webkit.WebView; +import android.webkit.WebViewClient; +import android.webkit.ValueCallback; +import android.webkit.WebChromeClient.FileChooserParams; +import android.webkit.PermissionRequest; +import android.widget.ProgressBar; +import android.widget.Toast; +import android.util.Log; +import android.content.pm.PackageManager; + +import androidx.appcompat.app.AppCompatActivity; +import androidx.core.app.ActivityCompat; +import androidx.core.content.ContextCompat; + +import com.google.firebase.messaging.FirebaseMessaging; + +import okhttp3.MediaType; +import okhttp3.OkHttpClient; +import okhttp3.Request; +import okhttp3.RequestBody; + +public class MainActivity extends AppCompatActivity { + private WebView webView; + private ProgressBar loading; + + private ValueCallback filePathCallback; + private final static int FILECHOOSER_RESULTCODE = 1; + + private void sendTokenKeLaravel(String token) { + OkHttpClient client = new OkHttpClient(); + + MediaType JSON = MediaType.get("application/json; charset=utf-8"); + String jsonBody = "{ \"device_token\": \"" + token + "\" }"; + + RequestBody body = RequestBody.create(JSON, jsonBody); + Request request = new Request.Builder() + .url("https://siamo.freedesign.my.id/api/save-token") + .post(body) + .addHeader("Accept", "application/json") + .build(); + + client.newCall(request).enqueue(new okhttp3.Callback() { + @Override + public void onFailure(okhttp3.Call call, java.io.IOException e) { + Log.e("FCM", "Token gagal dikirim", e); + } + + @Override + public void onResponse(okhttp3.Call call, okhttp3.Response response) throws java.io.IOException { + Log.d("FCM", "Token berhasil dikirim: " + response.body().string()); + } + }); + } + + @Override + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.activity_main); + + if (ContextCompat.checkSelfPermission(this, android.Manifest.permission.CAMERA) + != PackageManager.PERMISSION_GRANTED) { + ActivityCompat.requestPermissions(this, + new String[]{android.Manifest.permission.CAMERA}, 1); + } + + webView = findViewById(R.id.webView); + loading = findViewById(R.id.loading); + + FirebaseMessaging.getInstance().getToken() + .addOnCompleteListener(task -> { + if (!task.isSuccessful()) { + Log.w("FCM_TOKEN", "Gagal mengambil token FCM", task.getException()); + return; + } + + String token = task.getResult(); + Log.d("FCM_TOKEN", "Token: " + token); + sendTokenKeLaravel(token); + }); + + WebSettings webSettings = webView.getSettings(); + webSettings.setJavaScriptEnabled(true); + webSettings.setDomStorageEnabled(true); + webSettings.setDatabaseEnabled(true); + webSettings.setAllowFileAccess(true); + webSettings.setAllowContentAccess(true); + webSettings.setMediaPlaybackRequiresUserGesture(false); + webSettings.setMixedContentMode(WebSettings.MIXED_CONTENT_ALWAYS_ALLOW); + + ConnectivityManager cm = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE); + NetworkInfo netInfo = cm.getActiveNetworkInfo(); + + if (netInfo != null && netInfo.isConnected()) { + webSettings.setCacheMode(WebSettings.LOAD_DEFAULT); + } else { + webSettings.setCacheMode(WebSettings.LOAD_CACHE_ELSE_NETWORK); + } + + webView.setVisibility(View.GONE); + loading.setVisibility(View.VISIBLE); + + webView.setWebChromeClient(new WebChromeClient() { + @Override + public void onProgressChanged(WebView view, int progress) { + if (progress < 100) { + loading.setVisibility(View.VISIBLE); + } else { + loading.setVisibility(View.GONE); + } + } + + // ✅ Tambahkan ini agar getUserMedia bisa jalan di Oreo + @Override + public void onPermissionRequest(final PermissionRequest request) { + runOnUiThread(() -> { + if (request.getOrigin().toString().startsWith("https://")) { + request.grant(request.getResources()); + } else { + request.deny(); + } + }); + } + + // ✅ Untuk file upload atau kamera + @Override + public boolean onShowFileChooser(WebView webView, ValueCallback filePathCallback, + FileChooserParams fileChooserParams) { + if (MainActivity.this.filePathCallback != null) { + MainActivity.this.filePathCallback.onReceiveValue(null); + } + MainActivity.this.filePathCallback = filePathCallback; + + Intent intent = fileChooserParams.createIntent(); + try { + startActivityForResult(intent, FILECHOOSER_RESULTCODE); + } catch (ActivityNotFoundException e) { + MainActivity.this.filePathCallback = null; + Toast.makeText(MainActivity.this, "Tidak dapat membuka file chooser", Toast.LENGTH_LONG).show(); + return false; + } + return true; + } + }); + + webView.setWebViewClient(new WebViewClient() { + @Override + public void onPageStarted(WebView view, String url, android.graphics.Bitmap favicon) { + loading.setVisibility(View.VISIBLE); + webView.setVisibility(View.GONE); + } + + @Override + public void onPageFinished(WebView view, String url) { + loading.setVisibility(View.GONE); + webView.setVisibility(View.VISIBLE); + } + + @Override + public boolean shouldOverrideUrlLoading(WebView view, WebResourceRequest request) { + String url = request.getUrl().toString(); + loading.setVisibility(View.VISIBLE); + + if (url.startsWith("https://wa.me/")) { + openWhatsApp(url); + return true; + } + + return false; + } + }); + + webView.loadUrl("https://siamo.freedesign.my.id/"); + } + + @Override + protected void onActivityResult(int requestCode, int resultCode, Intent intent) { + super.onActivityResult(requestCode, resultCode, intent); + + if (requestCode == FILECHOOSER_RESULTCODE && filePathCallback != null) { + Uri[] results = null; + if (resultCode == RESULT_OK && intent != null) { + Uri dataUri = intent.getData(); + if (dataUri != null) { + results = new Uri[]{dataUri}; + } + } + filePathCallback.onReceiveValue(results); + filePathCallback = null; + } + } + + private void openWhatsApp(String url) { + try { + Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url)); + startActivity(intent); + } catch (ActivityNotFoundException e) { + Toast.makeText(this, "WhatsApp tidak terinstal!", Toast.LENGTH_SHORT).show(); + } + } + + @Override + public void onBackPressed() { + if (webView.canGoBack()) { + loading.setVisibility(View.VISIBLE); + webView.goBack(); + } else { + super.onBackPressed(); + } + } +} diff --git a/app/src/main/java/com/example/siamo_v2/MyFirebaseMessagingService.java b/app/src/main/java/com/example/siamo_v2/MyFirebaseMessagingService.java new file mode 100644 index 0000000..e97f225 --- /dev/null +++ b/app/src/main/java/com/example/siamo_v2/MyFirebaseMessagingService.java @@ -0,0 +1,51 @@ +package com.example.siamo_v2; + +import android.util.Log; +import com.google.firebase.messaging.FirebaseMessagingService; +import com.google.firebase.messaging.RemoteMessage; +import com.google.firebase.messaging.FirebaseMessaging; + +import okhttp3.MediaType; +import okhttp3.OkHttpClient; +import okhttp3.Request; +import okhttp3.RequestBody; + +public class MyFirebaseMessagingService extends FirebaseMessagingService { + + @Override + public void onNewToken(String token) { + super.onNewToken(token); + Log.d("FCM_TOKEN", "Token: " + token); + + // Kirim ke Laravel via API + sendTokenKeLaravel(token); + } + + private void sendTokenKeLaravel(String token) { + OkHttpClient client = new OkHttpClient(); + + MediaType JSON = MediaType.get("application/json; charset=utf-8"); + + String jsonBody = "{ \"device_token\": \"" + token + "\" }"; + + RequestBody body = RequestBody.create(JSON, jsonBody); // ✔️ benar + Request request = new Request.Builder() + .url("https://siamo.freedesign.my.id/api/save-token") // ganti sesuai URL kamu + .post(body) + .addHeader("Accept", "application/json") + .build(); + + // Async call + client.newCall(request).enqueue(new okhttp3.Callback() { + @Override + public void onFailure(okhttp3.Call call, java.io.IOException e) { + Log.e("FCM", "Token gagal dikirim", e); + } + + @Override + public void onResponse(okhttp3.Call call, okhttp3.Response response) throws java.io.IOException { + Log.d("FCM", "Token berhasil dikirim: " + response.body().string()); + } + }); + } +} \ No newline at end of file diff --git a/app/src/main/java/com/example/siamo_v2/SplashActivity.java b/app/src/main/java/com/example/siamo_v2/SplashActivity.java new file mode 100644 index 0000000..adaf8bf --- /dev/null +++ b/app/src/main/java/com/example/siamo_v2/SplashActivity.java @@ -0,0 +1,24 @@ +package com.example.siamo_v2; + + +import android.content.Intent; +import android.os.Bundle; +import android.os.Handler; +import androidx.appcompat.app.AppCompatActivity; + +public class SplashActivity extends AppCompatActivity { + + @Override + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.activity_splash); + + // Delay untuk splash screen selama 3 detik (3000 ms) + new Handler().postDelayed(() -> { + // Pindah ke MainActivity setelah delay selesai + Intent intent = new Intent(SplashActivity.this, MainActivity.class); + startActivity(intent); + finish(); // Tutup SplashActivity agar tidak bisa kembali ke splash screen + }, 3000); // 3000 ms = 3 detik + } +} \ No newline at end of file diff --git a/app/src/main/res/anim/fade_in.xml b/app/src/main/res/anim/fade_in.xml new file mode 100644 index 0000000..ed7fd08 --- /dev/null +++ b/app/src/main/res/anim/fade_in.xml @@ -0,0 +1,5 @@ + + diff --git a/app/src/main/res/drawable-v24/ic_launcher_foreground.xml b/app/src/main/res/drawable-v24/ic_launcher_foreground.xml new file mode 100644 index 0000000..2b068d1 --- /dev/null +++ b/app/src/main/res/drawable-v24/ic_launcher_foreground.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/drawable/ic_launcher_background.xml b/app/src/main/res/drawable/ic_launcher_background.xml new file mode 100644 index 0000000..07d5da9 --- /dev/null +++ b/app/src/main/res/drawable/ic_launcher_background.xml @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/app/src/main/res/layout/activity_main.xml b/app/src/main/res/layout/activity_main.xml new file mode 100644 index 0000000..753b664 --- /dev/null +++ b/app/src/main/res/layout/activity_main.xml @@ -0,0 +1,18 @@ + + + + + + + + diff --git a/app/src/main/res/layout/activity_splash.xml b/app/src/main/res/layout/activity_splash.xml new file mode 100644 index 0000000..6c7275e --- /dev/null +++ b/app/src/main/res/layout/activity_splash.xml @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 0000000..6f3b755 --- /dev/null +++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 0000000..6f3b755 --- /dev/null +++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher.webp b/app/src/main/res/mipmap-hdpi/ic_launcher.webp new file mode 100644 index 0000000..c209e78 Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher.webp differ diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp new file mode 100644 index 0000000..b2dfe3d Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp differ diff --git a/app/src/main/res/mipmap-hdpi/pmi.png b/app/src/main/res/mipmap-hdpi/pmi.png new file mode 100644 index 0000000..9ca473c Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/pmi.png differ diff --git a/app/src/main/res/mipmap-hdpi/siamo.png b/app/src/main/res/mipmap-hdpi/siamo.png new file mode 100644 index 0000000..74a830e Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/siamo.png differ diff --git a/app/src/main/res/mipmap-hdpi/siamo_s.png b/app/src/main/res/mipmap-hdpi/siamo_s.png new file mode 100644 index 0000000..12d7524 Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/siamo_s.png differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher.webp b/app/src/main/res/mipmap-mdpi/ic_launcher.webp new file mode 100644 index 0000000..4f0f1d6 Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher.webp differ diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp new file mode 100644 index 0000000..62b611d Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher.webp new file mode 100644 index 0000000..948a307 Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher.webp differ diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp new file mode 100644 index 0000000..1b9a695 Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp new file mode 100644 index 0000000..28d4b77 Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp differ diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp new file mode 100644 index 0000000..9287f50 Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp new file mode 100644 index 0000000..aa7d642 Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp differ diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp new file mode 100644 index 0000000..9126ae3 Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp differ diff --git a/app/src/main/res/values-night/themes.xml b/app/src/main/res/values-night/themes.xml new file mode 100644 index 0000000..787a60e --- /dev/null +++ b/app/src/main/res/values-night/themes.xml @@ -0,0 +1,7 @@ + + + + \ No newline at end of file diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml new file mode 100644 index 0000000..c8524cd --- /dev/null +++ b/app/src/main/res/values/colors.xml @@ -0,0 +1,5 @@ + + + #FF000000 + #FFFFFFFF + \ No newline at end of file diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml new file mode 100644 index 0000000..129e227 --- /dev/null +++ b/app/src/main/res/values/strings.xml @@ -0,0 +1,5 @@ + + siamo-v2 + Logo tengah + Powered by logo + \ No newline at end of file diff --git a/app/src/main/res/values/themes.xml b/app/src/main/res/values/themes.xml new file mode 100644 index 0000000..45ade3a --- /dev/null +++ b/app/src/main/res/values/themes.xml @@ -0,0 +1,9 @@ + + + + +