Skip to content

Commit 01020d0

Browse files
committed
clear project
1 parent 5974214 commit 01020d0

19 files changed

Lines changed: 42 additions & 329 deletions

File tree

.idea/vcs.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.

app/build.gradle

Lines changed: 1 addition & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ apply plugin: 'kotlin-kapt'
66
android {
77
compileSdkVersion 28
88
defaultConfig {
9-
applicationId "com.fdev.epars"
9+
applicationId "com.fdev.progressviewexample"
1010
minSdkVersion 21
1111
targetSdkVersion 28
1212
versionCode 1
@@ -21,17 +21,6 @@ android {
2121
}
2222
}
2323

24-
// lib versions
25-
ext {
26-
v_dagger = "2.21"
27-
v_rxjava = "2.2.6"
28-
v_rxandroid = "2.1.1"
29-
v_rxbindings = "3.0.0-alpha2"
30-
v_retrofit = "2.5.0"
31-
v_retrofit_rx_adapter = "2.0.2"
32-
v_okhttp_logging_interc = "3.10.0"
33-
}
34-
3524
dependencies {
3625
implementation fileTree(include: ['*.jar'], dir: 'libs')
3726
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
@@ -44,31 +33,5 @@ dependencies {
4433
implementation 'androidx.recyclerview:recyclerview:1.0.0'
4534
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
4635

47-
// retrofit
48-
implementation "com.squareup.retrofit2:retrofit:$v_retrofit"
49-
implementation "com.squareup.retrofit2:converter-gson:$v_retrofit"
50-
implementation "com.squareup.retrofit2:adapter-rxjava:$v_retrofit_rx_adapter"
51-
implementation "com.squareup.okhttp3:logging-interceptor:$v_okhttp_logging_interc"
52-
53-
// dagger 2
54-
implementation "com.google.dagger:dagger:$v_dagger"
55-
kapt "com.google.dagger:dagger-compiler:$v_dagger"
56-
annotationProcessor "com.google.dagger:dagger-compiler:$v_dagger"
57-
58-
// reactiveX
59-
implementation "io.reactivex.rxjava2:rxjava:$v_rxjava"
60-
implementation "io.reactivex.rxjava2:rxandroid:$v_rxandroid"
61-
62-
//rxBindings
63-
implementation "com.jakewharton.rxbinding3:rxbinding:$v_rxbindings"
64-
implementation "com.jakewharton.rxbinding3:rxbinding-core:$v_rxbindings"
65-
implementation "com.jakewharton.rxbinding3:rxbinding-appcompat:$v_rxbindings"
66-
implementation "com.jakewharton.rxbinding3:rxbinding-drawerlayout:$v_rxbindings"
67-
implementation "com.jakewharton.rxbinding3:rxbinding-leanback:$v_rxbindings"
68-
implementation "com.jakewharton.rxbinding3:rxbinding-recyclerview:$v_rxbindings"
69-
implementation "com.jakewharton.rxbinding3:rxbinding-slidingpanelayout:$v_rxbindings"
70-
implementation "com.jakewharton.rxbinding3:rxbinding-swiperefreshlayout:$v_rxbindings"
71-
implementation "com.jakewharton.rxbinding3:rxbinding-viewpager:$v_rxbindings"
72-
implementation "com.jakewharton.rxbinding3:rxbinding-material:$v_rxbindings"
7336
implementation project(':progressview')
7437
}

app/src/androidTest/java/com/fdev/epars/ExampleInstrumentedTest.kt renamed to app/src/androidTest/java/com/fdev/ProgressViewExample/ExampleInstrumentedTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.fdev.epars
1+
package com.fdev.ProgressViewExample
22

33
import androidx.test.InstrumentationRegistry
44
import androidx.test.runner.AndroidJUnit4

app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="com.fdev.epars">
3+
package="com.fdev.ProgressViewExample">
44

55
<!-- To auto-complete the email text field in the login form with the user's emails -->
66
<uses-permission android:name="android.permission.GET_ACCOUNTS"/>
@@ -15,7 +15,7 @@
1515
android:supportsRtl="true"
1616
android:theme="@style/AppTheme">
1717
<activity
18-
android:name=".ui.activity.LoginActivity"
18+
android:name="com.fdev.ProgressViewExample.MainActivity"
1919
android:label="@string/app_name">
2020
<intent-filter>
2121
<action android:name="android.intent.action.MAIN"/>
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
package com.fdev.ProgressViewExample
2+
3+
import androidx.appcompat.app.AppCompatActivity
4+
import android.os.Bundle
5+
6+
7+
class MainActivity : AppCompatActivity() {
8+
9+
override fun onCreate(savedInstanceState: Bundle?) {
10+
super.onCreate(savedInstanceState)
11+
setContentView(R.layout.activity_login)
12+
}
13+
}

app/src/main/java/com/fdev/epars/Config.kt

Lines changed: 0 additions & 11 deletions
This file was deleted.

app/src/main/java/com/fdev/epars/entity/AuthorizeFormModel.kt

Lines changed: 0 additions & 12 deletions
This file was deleted.

app/src/main/java/com/fdev/epars/entity/CompleteToken.kt

Lines changed: 0 additions & 13 deletions
This file was deleted.

app/src/main/java/com/fdev/epars/entity/service_result/ServiceResult.kt

Lines changed: 0 additions & 13 deletions
This file was deleted.

app/src/main/java/com/fdev/epars/entity/service_result/ServiceResultStatus.kt

Lines changed: 0 additions & 11 deletions
This file was deleted.

0 commit comments

Comments
 (0)