-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 80e7375
Showing
799 changed files
with
139,123 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
*.iml | ||
.gradle | ||
.idea | ||
.DS_Store | ||
build | ||
captures | ||
.externalNativeBuild | ||
.cxx | ||
local.properties | ||
xcuserdata |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
plugins { | ||
alias(libs.plugins.androidApplication) | ||
alias(libs.plugins.kotlinAndroid) | ||
} | ||
|
||
android { | ||
namespace = "io.github.yahiaangelo.filmsimulator.android" | ||
compileSdk = 34 | ||
defaultConfig { | ||
applicationId = "io.github.yahiaangelo.filmsimulator.android" | ||
minSdk = 24 | ||
targetSdk = 34 | ||
versionCode = 1 | ||
versionName = "1.0" | ||
} | ||
buildFeatures { | ||
compose = true | ||
} | ||
composeOptions { | ||
kotlinCompilerExtensionVersion = libs.versions.compose.compiler.get() | ||
} | ||
packaging { | ||
resources { | ||
excludes += "/META-INF/{AL2.0,LGPL2.1}" | ||
} | ||
} | ||
buildTypes { | ||
getByName("release") { | ||
isMinifyEnabled = false | ||
} | ||
} | ||
compileOptions { | ||
sourceCompatibility = JavaVersion.VERSION_1_8 | ||
targetCompatibility = JavaVersion.VERSION_1_8 | ||
} | ||
kotlinOptions { | ||
jvmTarget = "1.8" | ||
} | ||
} | ||
|
||
dependencies { | ||
implementation(projects.shared) | ||
implementation(libs.compose.ui) | ||
implementation(libs.compose.ui.tooling.preview) | ||
implementation(libs.compose.material3) | ||
implementation(libs.androidx.activity.compose) | ||
debugImplementation(libs.compose.ui.tooling) | ||
implementation(libs.ktor.client.android) | ||
implementation(libs.androidx.lifecycle.viewmodel.ktx) | ||
implementation(libs.androidx.lifecycle.runtime.compose) | ||
implementation(libs.androidx.lifecycle.viewmodel.compose) | ||
implementation(libs.koin.android) | ||
implementation (libs.ffmpeg.kit.min) | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"> | ||
|
||
<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE"/> | ||
<uses-permission android:name="android.permission.INTERNET" /> | ||
|
||
<application | ||
android:allowBackup="false" | ||
android:supportsRtl="true" | ||
android:requestLegacyExternalStorage="true" | ||
android:name=".MainApplication" | ||
android:theme="@style/AppTheme"> | ||
<activity | ||
android:name=".MainActivity" | ||
android:exported="true"> | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN" /> | ||
<category android:name="android.intent.category.LAUNCHER" /> | ||
</intent-filter> | ||
</activity> | ||
</application> | ||
</manifest> |
33 changes: 33 additions & 0 deletions
33
androidApp/src/main/java/io/github/yahiaangelo/filmsimulator/android/MainActivity.kt
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
package io.github.yahiaangelo.filmsimulator.android | ||
|
||
import App | ||
import android.os.Bundle | ||
import androidx.activity.ComponentActivity | ||
import androidx.activity.compose.setContent | ||
import androidx.activity.enableEdgeToEdge | ||
import androidx.compose.material3.* | ||
import androidx.compose.runtime.Composable | ||
import androidx.compose.ui.tooling.preview.Preview | ||
|
||
class MainActivity : ComponentActivity() { | ||
override fun onCreate(savedInstanceState: Bundle?) { | ||
super.onCreate(savedInstanceState) | ||
enableEdgeToEdge() | ||
setContent { | ||
App() | ||
} | ||
} | ||
} | ||
|
||
@Composable | ||
fun GreetingView(text: String) { | ||
Text(text = text) | ||
} | ||
|
||
@Preview | ||
@Composable | ||
fun DefaultPreview() { | ||
MyApplicationTheme { | ||
GreetingView("Hello, Android!") | ||
} | ||
} |
29 changes: 29 additions & 0 deletions
29
androidApp/src/main/java/io/github/yahiaangelo/filmsimulator/android/MainApplication.kt
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
package io.github.yahiaangelo.filmsimulator.android | ||
|
||
import android.app.Application | ||
import di.appModule | ||
import io.github.yahiaangelo.filmsimulator.FilmSimulator | ||
import io.github.yahiaangelo.filmsimulator.FilmSimulatorConfig | ||
import io.github.yahiaangelo.filmsimulator.util.AppContext | ||
import org.koin.android.ext.koin.androidContext | ||
import org.koin.android.ext.koin.androidLogger | ||
import org.koin.core.context.startKoin | ||
|
||
class MainApplication: Application() { | ||
|
||
override fun onCreate() { | ||
super.onCreate() | ||
|
||
startKoin { | ||
androidContext(this@MainApplication) | ||
androidLogger() | ||
modules(appModule()) | ||
} | ||
|
||
FilmSimulator.initialize( | ||
FilmSimulatorConfig( | ||
appContext = AppContext.apply { set(applicationContext) } | ||
) | ||
) | ||
} | ||
} |
55 changes: 55 additions & 0 deletions
55
androidApp/src/main/java/io/github/yahiaangelo/filmsimulator/android/MyApplicationTheme.kt
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
package io.github.yahiaangelo.filmsimulator.android | ||
|
||
import androidx.compose.foundation.isSystemInDarkTheme | ||
import androidx.compose.foundation.shape.RoundedCornerShape | ||
import androidx.compose.material3.MaterialTheme | ||
import androidx.compose.material3.Shapes | ||
import androidx.compose.material3.Typography | ||
import androidx.compose.material3.darkColorScheme | ||
import androidx.compose.material3.lightColorScheme | ||
import androidx.compose.runtime.Composable | ||
import androidx.compose.ui.graphics.Color | ||
import androidx.compose.ui.text.TextStyle | ||
import androidx.compose.ui.text.font.FontFamily | ||
import androidx.compose.ui.text.font.FontWeight | ||
import androidx.compose.ui.unit.dp | ||
import androidx.compose.ui.unit.sp | ||
|
||
@Composable | ||
fun MyApplicationTheme( | ||
darkTheme: Boolean = isSystemInDarkTheme(), | ||
content: @Composable () -> Unit | ||
) { | ||
val colors = if (darkTheme) { | ||
darkColorScheme( | ||
primary = Color(0xFFBB86FC), | ||
secondary = Color(0xFF03DAC5), | ||
tertiary = Color(0xFF3700B3) | ||
) | ||
} else { | ||
lightColorScheme( | ||
primary = Color(0xFF6200EE), | ||
secondary = Color(0xFF03DAC5), | ||
tertiary = Color(0xFF3700B3) | ||
) | ||
} | ||
val typography = Typography( | ||
bodyMedium = TextStyle( | ||
fontFamily = FontFamily.Default, | ||
fontWeight = FontWeight.Normal, | ||
fontSize = 16.sp | ||
) | ||
) | ||
val shapes = Shapes( | ||
small = RoundedCornerShape(4.dp), | ||
medium = RoundedCornerShape(4.dp), | ||
large = RoundedCornerShape(0.dp) | ||
) | ||
|
||
MaterialTheme( | ||
colorScheme = colors, | ||
typography = typography, | ||
shapes = shapes, | ||
content = content | ||
) | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<resources> | ||
</resources> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<resources> | ||
<style name="AppTheme" parent="android:Theme.Material.NoActionBar"/> | ||
</resources> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
plugins { | ||
//trick: for the same plugin versions in all sub-modules | ||
alias(libs.plugins.androidApplication).apply(false) | ||
alias(libs.plugins.androidLibrary).apply(false) | ||
alias(libs.plugins.kotlinAndroid).apply(false) | ||
alias(libs.plugins.kotlinMultiplatform).apply(false) | ||
alias(libs.plugins.kotlinCocoapods).apply(false) | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#Gradle | ||
org.gradle.jvmargs=-Xmx2048M -Dfile.encoding=UTF-8 -Dkotlin.daemon.jvm.options\="-Xmx2048M" | ||
org.gradle.caching=true | ||
org.gradle.configuration-cache=true | ||
|
||
#Kotlin | ||
kotlin.code.style=official | ||
|
||
#Android | ||
android.useAndroidX=true | ||
android.nonTransitiveRClass=true | ||
|
||
#Compose | ||
compose.resources.always.generate.accessors=true |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
[versions] | ||
agp = "8.2.2" | ||
imageLoader = "1.7.6" | ||
kotlin = "1.9.20" | ||
compose = "1.6.0-rc03" | ||
compose-compiler = "1.5.4" | ||
compose-material3 = "1.2.0" | ||
androidx-activityCompose = "1.8.2" | ||
logging = "1.4.2" | ||
materialKolor = "1.4.0-rc03" | ||
nativeDriver = "2.0.1" | ||
runtime = "2.0.1" | ||
statelyCommon = "2.0.5" | ||
voyager = "1.0.0" | ||
koin = "3.6.0-alpha1" | ||
peekaboo = "0.4.3" | ||
datastoreCore = "1.0.0" | ||
okio = "3.8.0" | ||
ktorVersion = "2.3.7" | ||
ffmpegKitMin = "6.0-2" | ||
compose-plugin = "1.5.12" | ||
kotlinxCoroutinesCore = "1.8.0" | ||
lifecycleViewmodelKtx = "2.7.0" | ||
|
||
|
||
[libraries] | ||
android-driver = { module = "app.cash.sqldelight:android-driver", version.ref = "nativeDriver" } | ||
androidx-lifecycle-runtime-compose = { module = "androidx.lifecycle:lifecycle-runtime-compose", version.ref = "lifecycleViewmodelKtx" } | ||
androidx-lifecycle-viewmodel-compose = { module = "androidx.lifecycle:lifecycle-viewmodel-compose", version.ref = "lifecycleViewmodelKtx" } | ||
androidx-lifecycle-viewmodel-ktx = { module = "androidx.lifecycle:lifecycle-viewmodel-ktx", version.ref = "lifecycleViewmodelKtx" } | ||
coroutines-extensions = { module = "app.cash.sqldelight:coroutines-extensions", version.ref = "nativeDriver" } | ||
image-loader = { module = "io.github.qdsfdhvh:image-loader", version.ref = "imageLoader" } | ||
image-loader-extension-blur = { module = "io.github.qdsfdhvh:image-loader-extension-blur", version.ref = "imageLoader" } | ||
kotlin-test = { module = "org.jetbrains.kotlin:kotlin-test", version.ref = "kotlin" } | ||
androidx-activity-compose = { module = "androidx.activity:activity-compose", version.ref = "androidx-activityCompose" } | ||
compose-ui = { module = "androidx.compose.ui:ui", version.ref = "compose" } | ||
compose-ui-tooling = { module = "androidx.compose.ui:ui-tooling", version.ref = "compose" } | ||
compose-ui-tooling-preview = { module = "androidx.compose.ui:ui-tooling-preview", version.ref = "compose" } | ||
compose-foundation = { module = "androidx.compose.foundation:foundation", version.ref = "compose" } | ||
compose-material3 = { module = "androidx.compose.material3:material3", version.ref = "compose-material3" } | ||
ktor-client-android = { module = "io.ktor:ktor-client-android", version.ref = "ktorVersion" } | ||
ktor-client-content-negotiation = { module = "io.ktor:ktor-client-content-negotiation", version.ref = "ktorVersion" } | ||
ktor-client-core = { module = "io.ktor:ktor-client-core", version.ref = "ktorVersion" } | ||
ktor-client-darwin = { module = "io.ktor:ktor-client-darwin", version.ref = "ktorVersion" } | ||
ktor-serialization-kotlinx-json = { module = "io.ktor:ktor-serialization-kotlinx-json", version.ref = "ktorVersion" } | ||
logging = { module = "org.lighthousegames:logging", version.ref = "logging" } | ||
material-kolor = { module = "com.materialkolor:material-kolor", version.ref = "materialKolor" } | ||
native-driver = { module = "app.cash.sqldelight:native-driver", version.ref = "nativeDriver" } | ||
runtime = { module = "com.squareup.sqldelight:runtime", version.ref = "runtime" } | ||
stately-common = { module = "co.touchlab:stately-common", version.ref = "statelyCommon" } | ||
voyager-navigator = { module = "cafe.adriel.voyager:voyager-navigator", version.ref = "voyager" } | ||
voyager-screenModel = { module = "cafe.adriel.voyager:voyager-screenmodel", version.ref = "voyager" } | ||
voyager-bottomSheetNavigator = { module = "cafe.adriel.voyager:voyager-bottom-sheet-navigator", version.ref = "voyager" } | ||
voyager-tabNavigator = { module = "cafe.adriel.voyager:voyager-tab-navigator", version.ref = "voyager" } | ||
voyager-transitions = { module = "cafe.adriel.voyager:voyager-transitions", version.ref = "voyager" } | ||
voyager-koin = { module = "cafe.adriel.voyager:voyager-koin", version.ref = "voyager" } | ||
voyager-hilt = { module = "cafe.adriel.voyager:voyager-hilt", version.ref = "voyager" } | ||
voyager-kodein = { module = "cafe.adriel.voyager:voyager-kodein", version.ref = "voyager" } | ||
voyager-rxjava = { module = "cafe.adriel.voyager:voyager-rxjava", version.ref = "voyager" } | ||
koin-core = { module = "io.insert-koin:koin-core", version.ref = "koin" } | ||
koin-compose = { module = "io.insert-koin:koin-compose", version.ref = "koin" } | ||
koin-ktor = { module = "io.insert-koin:koin-ktor", version.ref = "koin" } | ||
koin-logger-slf4j = { module = "io.insert-koin:koin-logger-slf4j", version.ref = "koin" } | ||
koin-test = { module = "io.insert-koin:koin-test", version.ref = "koin" } | ||
koin-android = { module = "io.insert-koin:koin-android", version.ref = "koin" } | ||
peekaboo-ui = { module = "io.github.onseok:peekaboo-ui", version.ref = "peekaboo" } | ||
peekaboo-image-picker = { module = "io.github.onseok:peekaboo-image-picker", version.ref = "peekaboo" } | ||
okio = {module = "com.squareup.okio:okio", version.ref = "okio"} | ||
androidx-datastore-core = { group = "androidx.datastore", name = "datastore-core", version.ref = "datastoreCore" } | ||
kotlinx-coroutines-core = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-core", version.ref = "kotlinxCoroutinesCore" } | ||
ffmpeg-kit-min = { module = "com.arthenica:ffmpeg-kit-min", version.ref = "ffmpegKitMin" } | ||
|
||
[plugins] | ||
androidApplication = { id = "com.android.application", version.ref = "agp" } | ||
androidLibrary = { id = "com.android.library", version.ref = "agp" } | ||
kotlinAndroid = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" } | ||
kotlinMultiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref = "kotlin" } | ||
kotlinCocoapods = { id = "org.jetbrains.kotlin.native.cocoapods", version.ref = "kotlin" } | ||
jetbrainsCompose = { id = "org.jetbrains.compose", version.ref = "compose" } |
Binary file not shown.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#Fri Feb 23 16:09:51 EET 2024 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
Oops, something went wrong.