-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
|
||
# InstagramClone | ||
Android Instagram clone built with Jetpack Compose | ||
|
||
## ScreenShots | ||
|
||
|
||
## Tech Stack. | ||
- [Kotlin](https://developer.android.com/kotlin) - Kotlin is a programming language that can run on JVM. Google has announced Kotlin as one of its officially supported programming languages in Android Studio; and the Android community is migrating at a pace from Java to Kotlin. | ||
- Jetpack components: | ||
- [Jetpack Compose](https://developer.android.com/jetpack/compose) - Jetpack Compose is Android’s modern toolkit for building native UI. It simplifies and accelerates UI development on Android. Quickly bring your app to life with less code, powerful tools, and intuitive Kotlin APIs. | ||
- [Android KTX](https://developer.android.com/kotlin/ktx.html) - Android KTX is a set of Kotlin extensions that are included with Android Jetpack and other Android libraries. KTX extensions provide concise, idiomatic Kotlin to Jetpack, Android platform, and other APIs. | ||
- [AndroidX](https://developer.android.com/jetpack/androidx) - Major improvement to the original Android [Support Library](https://developer.android.com/topic/libraries/support-library/index), which is no longer maintained. | ||
- [Lifecycle](https://developer.android.com/topic/libraries/architecture/lifecycle) - Lifecycle-aware components perform actions in response to a change in the lifecycle status of another component, such as activities and fragments. These components help you produce better-organized, and often lighter-weight code, that is easier to maintain. | ||
- [ViewModel](https://developer.android.com/topic/libraries/architecture/viewmodel) -The ViewModel class is designed to store and manage UI-related data in a lifecycle conscious way. | ||
- [Room database](https://developer.android.com/training/data-storage/room) - The Room persistence library provides an abstraction layer over SQLite to allow fluent database access while harnessing the full power of SQLite. | ||
|
||
- [Kotlin Coroutines](https://developer.android.com/kotlin/coroutines) - A concurrency design pattern that you can use on Android to simplify code that executes asynchronously. | ||
- [Retrofit](https://square.github.io/retrofit) - Retrofit is a REST client for Java/ Kotlin and Android by Square inc under Apache 2.0 license. Its a simple network library that is used for network transactions. By using this library we can seamlessly capture JSON response from web service/web API. | ||
- [GSON](https://github.com/square/gson) - JSON Parser,used to parse requests on the data layer for Entities and understands Kotlin non-nullable and default parameters. | ||
- [Kotlin Flow](https://developer.android.com/kotlin/flow) - In coroutines, a flow is a type that can emit multiple values sequentially, as opposed to suspend functions that return only a single value. | ||
- [Dagger Hilt](https://developer.android.com/training/dependency-injection/hilt-android) - A dependency injection library for Android that reduces the boilerplate of doing manual dependency injection in your project. | ||
- [Logging Interceptor](https://github.com/square/okhttp/blob/master/okhttp-logging-interceptor/README.md) - logs HTTP request and response data. | ||
- [Coil](https://coil-kt.github.io/coil/compose/)- An image loading library for Android backed by Kotlin Coroutines. | ||
- [Timber](https://github.com/JakeWharton/timber)- A logger with a small, extensible API which provides utility on top of Android's normal Log class. | ||
- [EXOPlayer](https://github.com/google/ExoPlayer) - Application level media player for Android. It provides an alternative to Android’s MediaPlayer API for playing audio and video both locally and over the Internet. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/build |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,145 @@ | ||
plugins { | ||
id 'com.android.application' | ||
id 'org.jetbrains.kotlin.android' | ||
id 'kotlin-parcelize' | ||
id 'dagger.hilt.android.plugin' | ||
id 'com.google.devtools.ksp' version '1.7.0-1.0.6' | ||
id 'com.google.gms.google-services' | ||
id 'com.google.dagger.hilt.android' | ||
id 'kotlin-kapt' | ||
} | ||
|
||
android { | ||
compileSdk 33 | ||
|
||
defaultConfig { | ||
applicationId "com.shivam.composeinstagramclone" | ||
minSdk 26 | ||
targetSdk 33 | ||
versionCode 1 | ||
versionName "1.0" | ||
|
||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" | ||
vectorDrawables { | ||
useSupportLibrary true | ||
} | ||
} | ||
|
||
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 { | ||
compose true | ||
} | ||
composeOptions { | ||
kotlinCompilerExtensionVersion compose_version | ||
} | ||
packagingOptions { | ||
resources { | ||
excludes += '/META-INF/{AL2.0,LGPL2.1}' | ||
} | ||
} | ||
|
||
//Compose Destinations | ||
applicationVariants.all { variant -> | ||
kotlin.sourceSets { | ||
getByName(variant.name) { | ||
kotlin.srcDir("build/generated/ksp/${variant.name}/kotlin") | ||
} | ||
} | ||
} | ||
} | ||
|
||
dependencies { | ||
|
||
implementation 'androidx.core:core-ktx:1.8.0' | ||
implementation "androidx.compose.ui:ui:$compose_version" | ||
implementation "androidx.compose.material:material:$compose_version" | ||
implementation "androidx.compose.ui:ui-tooling-preview:$compose_version" | ||
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.5.1' | ||
implementation 'androidx.activity:activity-compose:1.5.1' | ||
implementation 'androidx.appcompat:appcompat:1.4.2' | ||
implementation 'com.google.android.material:material:1.6.1' | ||
implementation 'androidx.constraintlayout:constraintlayout:2.1.4' | ||
implementation 'androidx.test:core-ktx:1.4.0' | ||
testImplementation 'junit:junit:4.13.2' | ||
androidTestImplementation 'androidx.test.ext:junit:1.1.3' | ||
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' | ||
androidTestImplementation "androidx.compose.ui:ui-test-junit4:$compose_version" | ||
debugImplementation "androidx.compose.ui:ui-tooling:$compose_version" | ||
debugImplementation "androidx.compose.ui:ui-test-manifest:$compose_version" | ||
|
||
//Material Icons | ||
implementation "androidx.compose.material:material-icons-extended:$compose_version" | ||
|
||
//ViewModel | ||
implementation "androidx.lifecycle:lifecycle-viewmodel-compose:2.5.1" | ||
|
||
//Coil | ||
implementation "io.coil-kt:coil-compose:2.1.0" | ||
|
||
//exoplayer | ||
implementation "com.google.android.exoplayer:exoplayer:2.18.1" | ||
|
||
//Navigation | ||
implementation "androidx.navigation:navigation-compose:2.5.0" | ||
|
||
//Coroutines | ||
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.1' | ||
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.1' | ||
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-play-services:1.6.1" | ||
|
||
//Coroutine Lifecycle Scopes | ||
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1" | ||
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.5.1" | ||
|
||
//Dagger - Hilt | ||
implementation "com.google.dagger:hilt-android:2.42" | ||
kapt "com.google.dagger:hilt-android-compiler:2.42" | ||
kapt "androidx.hilt:hilt-compiler:1.0.0" | ||
implementation 'androidx.hilt:hilt-navigation-compose:1.0.0' | ||
|
||
//Retrofit | ||
implementation 'com.squareup.retrofit2:retrofit:2.9.0' | ||
implementation 'com.squareup.retrofit2:converter-gson:2.9.0' | ||
implementation "com.squareup.okhttp3:okhttp:5.0.0-alpha.2" | ||
implementation "com.squareup.okhttp3:logging-interceptor:5.0.0-alpha.2" | ||
|
||
//Timber | ||
implementation 'com.jakewharton.timber:timber:5.0.1' | ||
|
||
//Truth | ||
testImplementation "com.google.truth:truth:1.1.3" | ||
|
||
//Navigation made easier | ||
implementation 'io.github.raamcosta.compose-destinations:core:1.6.14-beta' | ||
ksp 'io.github.raamcosta.compose-destinations:ksp:1.6.14-beta' | ||
|
||
//Room | ||
implementation 'androidx.room:room-runtime:2.4.2' | ||
kapt 'androidx.room:room-compiler:2.4.2' | ||
//kotlin extension and coroutine support for room | ||
implementation "androidx.room:room-ktx:2.4.2" | ||
|
||
//Firebase | ||
// Import the Firebase BoM | ||
implementation platform('com.google.firebase:firebase-bom:30.3.1') | ||
implementation 'com.google.firebase:firebase-analytics-ktx' | ||
implementation 'com.google.firebase:firebase-auth-ktx' | ||
implementation 'com.google.firebase:firebase-firestore-ktx' | ||
implementation 'com.google.firebase:firebase-storage-ktx' | ||
implementation 'com.google.firebase:firebase-messaging-ktx' | ||
|
||
//Accompanist | ||
implementation "com.google.accompanist:accompanist-permissions:$accompanist_version" | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{ | ||
"project_info": { | ||
"project_number": "465738376459", | ||
"project_id": "ig-clone-6df6b", | ||
"storage_bucket": "ig-clone-6df6b.appspot.com" | ||
}, | ||
"client": [ | ||
{ | ||
"client_info": { | ||
"mobilesdk_app_id": "1:465738376459:android:f7362a8477b0ca09dbee0e", | ||
"android_client_info": { | ||
"package_name": "com.shivam.composeinstagramclone" | ||
} | ||
}, | ||
"oauth_client": [ | ||
{ | ||
"client_id": "465738376459-ecsl8kof9l2mpgsqrf9oijh5bd3vujop.apps.googleusercontent.com", | ||
"client_type": 3 | ||
} | ||
], | ||
"api_key": [ | ||
{ | ||
"current_key": "AIzaSyCgntNHgZQGZGo-BJ4QNcf5zLf9WSaMv7Y" | ||
} | ||
], | ||
"services": { | ||
"appinvite_service": { | ||
"other_platform_oauth_client": [ | ||
{ | ||
"client_id": "465738376459-ecsl8kof9l2mpgsqrf9oijh5bd3vujop.apps.googleusercontent.com", | ||
"client_type": 3 | ||
} | ||
] | ||
} | ||
} | ||
} | ||
], | ||
"configuration_version": "1" | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package com.shivam.composeinstagramclone | ||
|
||
import androidx.test.platform.app.InstrumentationRegistry | ||
import androidx.test.ext.junit.runners.AndroidJUnit4 | ||
|
||
import org.junit.Test | ||
import org.junit.runner.RunWith | ||
|
||
import org.junit.Assert.* | ||
|
||
/** | ||
* Instrumented test, which will execute on an Android device. | ||
* | ||
* See [testing documentation](http://d.android.com/tools/testing). | ||
*/ | ||
@RunWith(AndroidJUnit4::class) | ||
class ExampleInstrumentedTest { | ||
@Test | ||
fun useAppContext() { | ||
// Context of the app under test. | ||
val appContext = InstrumentationRegistry.getInstrumentation().targetContext | ||
assertEquals("com.hashconcepts.composeinstagramclone", appContext.packageName) | ||
} | ||
} |