Skip to content

Commit 4e3fd84

Browse files
committed
Fix lintcheck dependency
fixes #79
1 parent 5a1d584 commit 4e3fd84

File tree

4 files changed

+15
-7
lines changed

4 files changed

+15
-7
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ apply from: "publish.gradle"
2828

2929
// Version number used for simpledialogfragments library, testApp and maven repository
3030
ext {
31-
VERSION = '3.5.1'
32-
VERSION_NR = 351
31+
VERSION = '3.5.2'
32+
VERSION_NR = 352
3333
}
3434

3535

simpledialogfragments/build.gradle

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,14 @@ android {
1717
consumerProguardFiles 'proguard-rules.pro'
1818
}
1919
}
20-
21-
lintOptions{
20+
lint {
2221
checkDependencies true
2322
disable 'MissingTranslation'
2423
}
2524
}
2625

2726
dependencies {
28-
implementation project(':lintchecks')
27+
debugImplementation project(':lintchecks')
2928
lintChecks project(':lintchecks')
3029
lintPublish project(':lintchecks')
3130

testApp/build.gradle

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,14 @@ dependencies {
3535
implementation 'com.google.android.material:material:1.2.1'
3636
implementation 'com.google.android.flexbox:flexbox:3.0.0'
3737
implementation 'com.google.zxing:core:3.3.3'
38+
39+
// sonatype maven
40+
//implementation 'io.github.eltos:simpledialogfragments:3.5.1'
41+
42+
// jitpack
43+
//implementation 'com.github.eltos:simpledialogfragments:v3.5'
44+
45+
// local project
3846
api project(path: ':simpledialogfragments')
39-
lintChecks project(':lintchecks')
47+
4048
}

testApp/src/main/AndroidManifest.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
android:label="@string/app_name"
1111
android:supportsRtl="true"
1212
android:theme="@style/AppTheme">
13-
<activity android:name=".MainActivity">
13+
<activity android:name=".MainActivity"
14+
android:exported="true">
1415
<intent-filter>
1516
<action android:name="android.intent.action.MAIN" />
1617
<category android:name="android.intent.category.LAUNCHER" />

0 commit comments

Comments
 (0)