Skip to content

Commit 00de496

Browse files
author
piclabsstudio
committed
Create a NavigationListView Library
1 parent 3ad0dfe commit 00de496

Some content is hidden

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

44 files changed

+442
-322
lines changed

.idea/assetWizardSettings.xml

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

.idea/caches/build_file_checksums.ser

58 Bytes
Binary file not shown.

.idea/codeStyles/Project.xml

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

.idea/gradle.xml

Lines changed: 4 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: 1 addition & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 27
4+
compileSdkVersion 29
55
defaultConfig {
66
applicationId "com.dvinfosys.androidcustomnavigationdrawerusingexpandablelistview"
7-
minSdkVersion 14
8-
targetSdkVersion 27
7+
minSdkVersion 15
8+
targetSdkVersion 29
99
versionCode 1
1010
versionName "1.0"
11-
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
11+
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1212
}
1313
buildTypes {
1414
release {
@@ -20,10 +20,11 @@ android {
2020

2121
dependencies {
2222
implementation fileTree(dir: 'libs', include: ['*.jar'])
23-
implementation 'com.android.support:appcompat-v7:27.1.1'
24-
implementation 'com.android.support:design:27.1.1'
25-
implementation 'com.android.support.constraint:constraint-layout:1.1.0'
23+
implementation 'androidx.appcompat:appcompat:1.0.0'
24+
implementation 'com.google.android.material:material:1.0.0'
25+
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
2626
testImplementation 'junit:junit:4.12'
27-
androidTestImplementation 'com.android.support.test:runner:1.0.2'
28-
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
27+
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
28+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0'
29+
implementation project(path: ':navigationlistview')
2930
}

app/src/androidTest/java/com/dvinfosys/androidcustomnavigationdrawerusingexpandablelistview/ExampleInstrumentedTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package com.dvinfosys.androidcustomnavigationdrawerusingexpandablelistview;
22

33
import android.content.Context;
4-
import android.support.test.InstrumentationRegistry;
5-
import android.support.test.runner.AndroidJUnit4;
4+
import androidx.test.platform.app.InstrumentationRegistry;
5+
import androidx.test.ext.junit.runners.AndroidJUnit4;
66

77
import org.junit.Test;
88
import org.junit.runner.RunWith;

0 commit comments

Comments
 (0)