Skip to content

Commit

Permalink
Merge pull request #155 from Kek-i/develop
Browse files Browse the repository at this point in the history
v2.0.1
  • Loading branch information
ddubii authored Feb 15, 2023
2 parents 808b4d1 + 2c4e088 commit ec2c6bd
Show file tree
Hide file tree
Showing 645 changed files with 20,102 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
*.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
.idea/gradle.xml
/font
.idea/deploymentTargetDropDown.xml
app/release/app-release.aab
app/release/app-release.apk
app/release/app-release.zip
app/release/output-metadata.json
3 changes: 3 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .idea/.name

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

39 changes: 39 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions app/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/build
92 changes: 92 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
plugins {
id 'com.android.application'
id 'kotlin-android'
id 'com.google.gms.google-services'
}

android {
compileSdk 33

viewBinding {
enabled = true
}

dataBinding {
enabled = true
}

defaultConfig {
applicationId "com.codepatissier.keki"
minSdk 26
targetSdk 33
versionCode 2
versionName "2.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'
}
}

dependencies {

implementation 'androidx.core:core-ktx:1.7.0'
implementation 'androidx.appcompat:appcompat:1.5.1'
implementation 'com.google.android.material:material:1.6.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.navigation:navigation-fragment-ktx:2.5.3'
implementation 'androidx.navigation:navigation-ui-ktx:2.5.3'
testImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
implementation 'io.github.ParkSangGwon:tedimagepicker:1.4.2'

implementation 'androidx.annotation:annotation:1.3.0'

implementation 'com.squareup.retrofit2:retrofit:2.9.0'

implementation("com.squareup.okhttp3:okhttp:5.0.0-alpha.2")

implementation 'com.squareup.retrofit2:converter-gson:2.9.0'

implementation("com.squareup.okhttp3:logging-interceptor:5.0.0-alpha.2")

implementation 'com.github.ybq:Android-SpinKit:1.4.0'

implementation 'androidx.legacy:legacy-support-v4:1.0.0'

implementation "androidx.viewpager2:viewpager2:1.0.0"

implementation 'com.github.bumptech.glide:glide:4.14.2'
annotationProcessor 'com.github.bumptech.glide:compiler:4.14.2'

implementation 'de.hdodenhof:circleimageview:3.1.0' //Circle ImageView

implementation 'com.tbuonomo.andrui:viewpagerdotsindicator:4.1.2'
implementation "com.daimajia.swipelayout:library:1.2.0@aar"

implementation "com.kakao.sdk:v2-all:2.12.1" // 카카오 로그인
implementation 'com.navercorp.nid:oauth-jdk8:5.1.0' // 네이버 로그인
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.1'
implementation 'com.google.firebase:firebase-auth-ktx' //구글 firebase 로그인
implementation 'com.google.android.gms:play-services-auth:19.0.0'

implementation platform('com.google.firebase:firebase-bom:31.2.0')
implementation 'com.google.firebase:firebase-analytics-ktx'
implementation 'com.google.firebase:firebase-storage-ktx'



}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"installed":{"client_id":"183252467381-nvrjh0voev6f9kmhmus97ccek0hracb4.apps.googleusercontent.com","project_id":"keki-375709","auth_uri":"https://accounts.google.com/o/oauth2/auth","token_uri":"https://oauth2.googleapis.com/token","auth_provider_x509_cert_url":"https://www.googleapis.com/oauth2/v1/certs"}}
21 changes: 21 additions & 0 deletions app/proguard-rules.pro
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
Binary file added app/release/app-release.aab
Binary file not shown.
Binary file added app/release/keki_version1.aab
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
package com.codepatissier.keki

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.umc.keki", appContext.packageName)
}
}
39 changes: 39 additions & 0 deletions app/src/google-services.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"project_info": {
"project_number": "282823038399",
"project_id": "keki-b25b7",
"storage_bucket": "keki-b25b7.appspot.com"
},
"client": [
{
"client_info": {
"mobilesdk_app_id": "1:282823038399:android:5fa39fb7e54e3403443d0a",
"android_client_info": {
"package_name": "com.codepatissier.keki"
}
},
"oauth_client": [
{
"client_id": "282823038399-3bnvshm1e271768rtkk78tq4db73h3rg.apps.googleusercontent.com",
"client_type": 3
}
],
"api_key": [
{
"current_key": "AIzaSyDOIjq-Fk5Jg_P19wqurOFpiwYUYAmPhsY"
}
],
"services": {
"appinvite_service": {
"other_platform_oauth_client": [
{
"client_id": "282823038399-3bnvshm1e271768rtkk78tq4db73h3rg.apps.googleusercontent.com",
"client_type": 3
}
]
}
}
}
],
"configuration_version": "1"
}
Loading

0 comments on commit ec2c6bd

Please sign in to comment.