File tree Expand file tree Collapse file tree 2 files changed +32
-18
lines changed
demo/app/App_Resources/Android Expand file tree Collapse file tree 2 files changed +32
-18
lines changed Original file line number Diff line number Diff line change 5
5
// compile 'com.android.support:recyclerview-v7:+'
6
6
// }
7
7
8
- android {
9
- defaultConfig {
10
- generatedDensities = []
11
- applicationId = " org.nativescript.demo"
12
- }
13
- aaptOptions {
14
- additionalParameters " --no-version-vectors"
15
- }
8
+
9
+ configurations. all {
10
+ resolutionStrategy. eachDependency { DependencyResolveDetails details ->
11
+ def requested = details. requested
12
+ if (requested. group == ' com.android.support' ) {
13
+ if (! requested. name. startsWith(" multidex" )) {
14
+ details. useVersion ' 27.0.2'
15
+ }
16
+ }
17
+
18
+ }
19
+ }
20
+
21
+
22
+ android {
23
+ defaultConfig {
24
+ generatedDensities = []
25
+ applicationId = " org.nativescript.demo"
26
+ }
27
+ aaptOptions {
28
+ additionalParameters " --no-version-vectors"
29
+ }
16
30
}
Original file line number Diff line number Diff line change 1
1
android {
2
- productFlavors {
3
- " nativescript-downloader" {
4
- dimension " nativescript-downloader"
5
- }
6
- }
2
+ productFlavors {
3
+ " nativescript-downloader" {
4
+ dimension " nativescript-downloader"
5
+ }
6
+ }
7
7
}
8
8
repositories {
9
- maven {
10
- url ' https://maven.google.com'
11
- }
9
+ maven {
10
+ url ' https://maven.google.com'
11
+ }
12
12
}
13
13
14
- dependencies {
15
- compile ' co.fitcom:fancydownloader:0.+'
14
+ dependencies {
15
+ compile ' co.fitcom:fancydownloader:0.+'
16
16
}
You can’t perform that action at this time.
0 commit comments