plugins { id 'com.android.application' id 'org.jetbrains.kotlin.android' id 'com.google.android.libraries.mapsplatform.secrets-gradle-plugin' } android { namespace 'com.example.apk_deteksi_kualitas_telur' compileSdk 33 viewBinding { enabled = true } defaultConfig { applicationId "com.example.apk_deteksi_kualitas_telur" minSdk 21 targetSdk 33 renderscriptSupportModeEnabled true 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 } kotlinOptions { jvmTarget = '1.8' } buildFeatures { viewBinding true mlModelBinding true } } dependencies { implementation 'androidx.core:core-ktx:1.7.0' implementation 'androidx.appcompat:appcompat:1.6.1' implementation 'com.google.android.material:material:1.9.0' implementation 'androidx.constraintlayout:constraintlayout:2.1.4' implementation 'com.google.android.gms:play-services-maps:18.1.0' implementation 'org.tensorflow:tensorflow-lite-gpu:2.3.0' testImplementation 'junit:junit:4.13.2' androidTestImplementation 'androidx.test.ext:junit:1.1.5' androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1' //html implementation 'androidx.core:core-ktx:1.6.0' //card view implementation 'androidx.cardview:cardview:1.0.0' // navigation Fragemnt implementation 'androidx.navigation:navigation-fragment-ktx:2.5.3' implementation 'androidx.navigation:navigation-ui-ktx:2.5.3' //tensorflow implementation 'org.tensorflow:tensorflow-lite-support:0.3.1' implementation 'org.tensorflow:tensorflow-lite-metadata:0.1.0' implementation 'org.tensorflow:tensorflow-lite:0.0.0-nightly-SNAPSHOT' //card view implementation "androidx.cardview:cardview:1.0.0" //image circular implementation 'de.hdodenhof:circleimageview:3.1.0' }