-
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature added and Ktorfit Update (#36)
* Updated .gitignore Signed-off-by: Rajesh Hadiya <[email protected]> * Updated .gitignore Signed-off-by: Rajesh Hadiya <[email protected]> * Delete FlowerSample_jslegacy.xml * Delete FlowerSample_jvm.xml * Delete flower_core_jslegacy.xml * Delete flower_core_jvm.xml * Delete flower_ktorfit_jslegacy.xml * Delete flower_ktorfit_jvm.xml * Delete Project_Default.xml * Delete jarRepositories.xml * Delete kotlinScripting.xml * Delete uiDesigner.xml * Delete kotlinc.xml * Dev (#27) (#28) * Updated .gitignore Signed-off-by: Rajesh Hadiya <[email protected]> * Updated .gitignore Signed-off-by: Rajesh Hadiya <[email protected]> Signed-off-by: Rajesh Hadiya <[email protected]> Signed-off-by: Rajesh Hadiya <[email protected]> * Dev (#27) (#29) * Updated .gitignore Signed-off-by: Rajesh Hadiya <[email protected]> * Updated .gitignore Signed-off-by: Rajesh Hadiya <[email protected]> Signed-off-by: Rajesh Hadiya <[email protected]> Signed-off-by: Rajesh Hadiya <[email protected]> * Updated README.md Signed-off-by: Rajesh Hadiya <[email protected]> * 1. Updated dependencies (core-ktx, appcompat, activity-compose, navigation-compose, gradle-maven-publish-plugin. 2. Updated compile/target sdk version 3. Added error handling in compose sample app Signed-off-by: Rajesh Hadiya <[email protected]> * Feature use inline classes (#34) * 1. Made Resource class as regular class with private constructor. 2. Added ErrorMessage and HttpStatusCode value classes to avoid using primitives 3. Added DBResource.kt Signed-off-by: Rajesh Hadiya <[email protected]> * 1. Added dbResource to fetch data from db only 2. Made Resource class constructor private 3. Compose app migrated to material 3 design 4. Code cleanup Signed-off-by: Rajesh Hadiya <[email protected]> * 1. Added dbResource to fetch data from db only 2. Used kotlin value classes for ErrorMessage and HttpStatusCode 3. Added more features in compose-app 4. Moved Flow related functions to separate package Signed-off-by: Rajesh Hadiya <[email protected]> * 1. Reverted error messages and http status code to primitives 2. Code re-structured Signed-off-by: Rajesh Hadiya <[email protected]> Signed-off-by: Rajesh Hadiya <[email protected]> * Ktorfit Update (#35) * Dev (#27) * Updated .gitignore Signed-off-by: Rajesh Hadiya <[email protected]> * Updated .gitignore Signed-off-by: Rajesh Hadiya <[email protected]> Signed-off-by: Rajesh Hadiya <[email protected]> * Removed ignored file (#30) * Updated .gitignore * Dev (#31) * Updated .gitignore Signed-off-by: Rajesh Hadiya <[email protected]> * Updated .gitignore Signed-off-by: Rajesh Hadiya <[email protected]> * Delete FlowerSample_jslegacy.xml * Delete FlowerSample_jvm.xml * Delete flower_core_jslegacy.xml * Delete flower_core_jvm.xml * Delete flower_ktorfit_jslegacy.xml * Delete flower_ktorfit_jvm.xml * Delete Project_Default.xml * Delete jarRepositories.xml * Delete kotlinScripting.xml * Delete uiDesigner.xml * Delete kotlinc.xml * Dev (#27) (#28) * Updated .gitignore Signed-off-by: Rajesh Hadiya <[email protected]> * Updated .gitignore Signed-off-by: Rajesh Hadiya <[email protected]> Signed-off-by: Rajesh Hadiya <[email protected]> Signed-off-by: Rajesh Hadiya <[email protected]> * Dev (#27) (#29) * Updated .gitignore Signed-off-by: Rajesh Hadiya <[email protected]> * Updated .gitignore Signed-off-by: Rajesh Hadiya <[email protected]> Signed-off-by: Rajesh Hadiya <[email protected]> Signed-off-by: Rajesh Hadiya <[email protected]> * Updated README.md Signed-off-by: Rajesh Hadiya <[email protected]> Signed-off-by: Rajesh Hadiya <[email protected]> * Update README.md * Update README.md * updated ktorfit Signed-off-by: Rajesh Hadiya <[email protected]> Co-authored-by: Rajesh Hadiya <[email protected]> Signed-off-by: Rajesh Hadiya <[email protected]> Co-authored-by: DatLag <[email protected]>
- Loading branch information
1 parent
ffe5c74
commit 434b7cf
Showing
46 changed files
with
517 additions
and
273 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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
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
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
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
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
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
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 |
---|---|---|
@@ -1,39 +1,37 @@ | ||
// Top-level build file where you can add configuration options common to all sub-projects/modules. | ||
plugins { | ||
kotlin("multiplatform") version "1.7.10" apply false | ||
id("com.vanniktech.maven.publish") version "0.21.0" apply false | ||
kotlin("multiplatform") version "1.7.20" apply false | ||
id("com.vanniktech.maven.publish") version "0.22.0" apply false | ||
} | ||
|
||
buildscript { | ||
val hiltVersion by extra("2.43") | ||
val coreKtxVersion by extra("1.9.0") | ||
val hiltVersion by extra("2.44") | ||
|
||
allprojects { | ||
repositories { | ||
google() | ||
mavenLocal() | ||
mavenCentral() | ||
gradlePluginPortal() | ||
} | ||
} | ||
|
||
repositories { | ||
google() | ||
mavenLocal() | ||
mavenCentral() | ||
gradlePluginPortal() | ||
} | ||
|
||
dependencies { | ||
classpath("com.android.tools.build:gradle:7.2.2") | ||
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.10") | ||
classpath("com.android.tools.build:gradle:7.3.1") | ||
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.20") | ||
classpath("com.google.dagger:hilt-android-gradle-plugin:$hiltVersion") | ||
classpath("com.vanniktech:gradle-maven-publish-plugin:0.21.0") | ||
classpath("com.vanniktech:gradle-maven-publish-plugin:0.22.0") | ||
} | ||
} | ||
|
||
repositories { | ||
google() | ||
mavenLocal() | ||
mavenCentral() | ||
gradlePluginPortal() | ||
} |
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
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
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
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
Oops, something went wrong.