Compare commits

..

No commits in common. "master" and "master" have entirely different histories.

11 changed files with 54 additions and 12 deletions

View File

@ -4,7 +4,6 @@
<selectionStates> <selectionStates>
<SelectionState runConfigName="app"> <SelectionState runConfigName="app">
<option name="selectionMode" value="DROPDOWN" /> <option name="selectionMode" value="DROPDOWN" />
<DialogSelection />
</SelectionState> </SelectionState>
</selectionStates> </selectionStates>
</component> </component>

View File

@ -37,10 +37,6 @@
<option name="composableFile" value="true" /> <option name="composableFile" value="true" />
<option name="previewFile" value="true" /> <option name="previewFile" value="true" />
</inspection_tool> </inspection_tool>
<inspection_tool class="PreviewDeviceShouldUseNewSpec" enabled="true" level="WEAK WARNING" enabled_by_default="true">
<option name="composableFile" value="true" />
<option name="previewFile" value="true" />
</inspection_tool>
<inspection_tool class="PreviewFontScaleMustBeGreaterThanZero" enabled="true" level="ERROR" enabled_by_default="true"> <inspection_tool class="PreviewFontScaleMustBeGreaterThanZero" enabled="true" level="ERROR" enabled_by_default="true">
<option name="composableFile" value="true" /> <option name="composableFile" value="true" />
<option name="previewFile" value="true" /> <option name="previewFile" value="true" />

1
.idea/misc.xml generated
View File

@ -1,3 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4"> <project version="4">
<component name="EntryPointsManager"> <component name="EntryPointsManager">
<list size="1"> <list size="1">

View File

@ -13,7 +13,7 @@
android:theme="@style/Theme.SIAMobile" android:theme="@style/Theme.SIAMobile"
tools:targetApi="31"> tools:targetApi="31">
<activity <activity
android:name=".Mhs202210715145" android:name=".Mhs202210715136"
android:exported="false" /> android:exported="false" />
<activity <activity
android:name=".Mhs000000000000" android:name=".Mhs000000000000"

View File

@ -106,7 +106,7 @@ fun KHSItem(mahasiswaName: String) {
val context = LocalContext.current val context = LocalContext.current
val mahasiswaActivityMap = mapOf( val mahasiswaActivityMap = mapOf(
"000000000000 EXAMPLE" to Mhs000000000000::class.java, "000000000000 EXAMPLE" to Mhs000000000000::class.java,
"202210715145 RASYID DARUSMAN" to Mhs202210715145::class.java "202210715136 MUHAMAD RAJWA ATHORIQ" to Mhs202210715136::class.java
//"202210715185 AHMAD DIMAS RAMADHAN" to Mhs202210715185::class.java, //"202210715185 AHMAD DIMAS RAMADHAN" to Mhs202210715185::class.java,
// silahkan ditambahkan di sini untuk NPM yang lain // silahkan ditambahkan di sini untuk NPM yang lain
) )

View File

@ -34,8 +34,6 @@ import androidx.compose.ui.text.font.FontWeight
import androidx.compose.ui.unit.dp import androidx.compose.ui.unit.dp
import androidx.compose.ui.unit.sp import androidx.compose.ui.unit.sp
import com.example.siamobile.ui.theme.SIAMobileTheme import com.example.siamobile.ui.theme.SIAMobileTheme
import com.example.siamobile.DetailMahasiswaScreen
class Mhs000000000000 : ComponentActivity() { class Mhs000000000000 : ComponentActivity() {
override fun onCreate(savedInstanceState: Bundle?) { override fun onCreate(savedInstanceState: Bundle?) {

View File

@ -35,10 +35,10 @@ import androidx.compose.ui.unit.dp
import androidx.compose.ui.unit.sp import androidx.compose.ui.unit.sp
import com.example.siamobile.ui.theme.SIAMobileTheme import com.example.siamobile.ui.theme.SIAMobileTheme
class Mhs202210715145 : ComponentActivity() { class Mhs202210715136 : ComponentActivity() {
override fun onCreate(savedInstanceState: Bundle?) { override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState) super.onCreate(savedInstanceState)
val mahasiswaName = intent.getStringExtra("mahasiswaName") ?: "NPM: 202210715118 Nama: Mohamad Diandra Ferdiansyah" val mahasiswaName = intent.getStringExtra("mahasiswaName") ?: "NPM: 202210715136 Nama: Muhamad Rajwa Athoriq"
setContent { setContent {
SIAMobileTheme { SIAMobileTheme {
DetailMahasiswaScreen(mahasiswaName) DetailMahasiswaScreen(mahasiswaName)
@ -48,7 +48,7 @@ class Mhs202210715145 : ComponentActivity() {
} }
@Composable @Composable
fun DetailMahasiswaScreen2(mahasiswaName: String) { fun DetailMahasiswaScreenOld(mahasiswaName: String) {
val context = LocalContext.current val context = LocalContext.current
val matakuliahList = listOf( val matakuliahList = listOf(
Triple(1, "Aljabar Linear", 1), Triple(1, "Aljabar Linear", 1),
@ -185,3 +185,5 @@ fun DetailMahasiswaScreen2(mahasiswaName: String) {
} }
} }
} }

40
gradle/libs.versions.toml Normal file
View File

@ -0,0 +1,40 @@
[versions]
agp = "8.6.0"
kotlin = "2.0.0"
coreKtx = "1.15.0"
junit = "4.13.2"
junitVersion = "1.2.1"
espressoCore = "3.6.1"
lifecycleRuntimeKtx = "2.8.7"
activityCompose = "1.9.3"
composeBom = "2024.04.01"
appcompat = "1.7.0"
material = "1.12.0"
activity = "1.9.3"
constraintlayout = "2.2.0"
[libraries]
androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
junit = { group = "junit", name = "junit", version.ref = "junit" }
androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junitVersion" }
androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espressoCore" }
androidx-lifecycle-runtime-ktx = { group = "androidx.lifecycle", name = "lifecycle-runtime-ktx", version.ref = "lifecycleRuntimeKtx" }
androidx-activity-compose = { group = "androidx.activity", name = "activity-compose", version.ref = "activityCompose" }
androidx-compose-bom = { group = "androidx.compose", name = "compose-bom", version.ref = "composeBom" }
androidx-ui = { group = "androidx.compose.ui", name = "ui" }
androidx-ui-graphics = { group = "androidx.compose.ui", name = "ui-graphics" }
androidx-ui-tooling = { group = "androidx.compose.ui", name = "ui-tooling" }
androidx-ui-tooling-preview = { group = "androidx.compose.ui", name = "ui-tooling-preview" }
androidx-ui-test-manifest = { group = "androidx.compose.ui", name = "ui-test-manifest" }
androidx-ui-test-junit4 = { group = "androidx.compose.ui", name = "ui-test-junit4" }
androidx-material3 = { group = "androidx.compose.material3", name = "material3" }
androidx-appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" }
material = { group = "com.google.android.material", name = "material", version.ref = "material" }
androidx-activity = { group = "androidx.activity", name = "activity", version.ref = "activity" }
androidx-constraintlayout = { group = "androidx.constraintlayout", name = "constraintlayout", version.ref = "constraintlayout" }
[plugins]
android-application = { id = "com.android.application", version.ref = "agp" }
kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
kotlin-compose = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }

BIN
gradle/wrapper/gradle-wrapper.jar vendored Normal file

Binary file not shown.

View File

@ -0,0 +1,6 @@
#Tue Jan 07 11:42:54 WIB 2025
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists