Skip to content

Commit 7809f2e

Browse files
committed
Initial commit
0 parents  commit 7809f2e

File tree

86 files changed

+2463
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+2463
-0
lines changed

.gitignore

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
*.iml
2+
.gradle
3+
/local.properties
4+
/.idea/caches
5+
/.idea/libraries
6+
/.idea/modules.xml
7+
/.idea/workspace.xml
8+
/.idea/navEditor.xml
9+
/.idea/assetWizardSettings.xml
10+
.DS_Store
11+
/build
12+
/captures
13+
.externalNativeBuild
14+
.cxx
15+
local.properties

.idea/.gitignore

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyles/Project.xml

Lines changed: 127 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyles/codeStyleConfig.xml

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/compiler.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

Lines changed: 19 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/kotlinc.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build

app/build.gradle

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
plugins {
2+
id "com.android.application"
3+
id "org.jetbrains.kotlin.android"
4+
id "org.jetbrains.kotlin.plugin.serialization" version "1.7.10"
5+
id "kotlin-kapt"
6+
}
7+
8+
android {
9+
namespace "com.troplo.privateuploader"
10+
compileSdk 34
11+
12+
defaultConfig {
13+
applicationId "com.troplo.privateuploader"
14+
minSdk 24
15+
targetSdk 34
16+
versionCode 1
17+
versionName "1.0"
18+
19+
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
20+
}
21+
22+
buildTypes {
23+
release {
24+
minifyEnabled false
25+
proguardFiles getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro"
26+
}
27+
}
28+
compileOptions {
29+
sourceCompatibility JavaVersion.VERSION_1_8
30+
targetCompatibility JavaVersion.VERSION_1_8
31+
}
32+
kotlinOptions {
33+
jvmTarget = "1.8"
34+
}
35+
buildFeatures {
36+
viewBinding true
37+
}
38+
sourceSets {
39+
main {
40+
res {
41+
srcDirs 'src/main/res','src/main/res/layout/chats', 'src/main/res/layout/core'
42+
}
43+
}
44+
}
45+
}
46+
47+
dependencies {
48+
implementation "com.android.support:multidex:1.0.3"
49+
implementation "androidx.core:core-ktx:1.10.1"
50+
implementation "androidx.appcompat:appcompat:1.6.1"
51+
implementation "com.google.android.material:material:1.9.0"
52+
implementation "androidx.constraintlayout:constraintlayout:2.1.4"
53+
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.6.1"
54+
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1"
55+
implementation "androidx.navigation:navigation-fragment-ktx:2.6.0"
56+
implementation "androidx.navigation:navigation-ui-ktx:2.6.0"
57+
implementation "com.squareup.retrofit2:retrofit:2.9.0"
58+
implementation "com.squareup.retrofit2:converter-moshi:2.9.0"
59+
implementation "com.squareup.moshi:moshi:1.12.0"
60+
implementation "com.squareup.moshi:moshi-kotlin:1.12.0"
61+
implementation 'com.github.bumptech.glide:glide:4.15.1'
62+
implementation "com.squareup.okhttp3:logging-interceptor:4.9.1"
63+
implementation "androidx.core:core-ktx:1.10.1"
64+
implementation "com.google.code.gson:gson:2.10.1"
65+
implementation "com.squareup.retrofit2:converter-gson:2.9.0"
66+
implementation "io.socket:socket.io-client:2.0.0"
67+
implementation "com.google.android.gms:play-services-awareness:19.0.1"
68+
implementation 'androidx.annotation:annotation:1.6.0'
69+
testImplementation "junit:junit:4.13.2"
70+
androidTestImplementation "androidx.test.ext:junit:1.1.5"
71+
androidTestImplementation "androidx.test.espresso:espresso-core:3.5.1"
72+
}

0 commit comments

Comments
 (0)