File tree Expand file tree Collapse file tree 5 files changed +4
-59
lines changed Expand file tree Collapse file tree 5 files changed +4
-59
lines changed Original file line number Diff line number Diff line change 24
24
}
25
25
```
26
26
27
- You will need to modify the ` allprojects > repositories ` section in your ` android/build.gradle ` file to include the Outsystems repository. Your ` android/build.gradle ` file should look similar to this after adding the repository.
28
-
29
- ``` gradle
30
- allprojects {
31
- repositories {
32
- google()
33
- mavenCentral()
34
- maven {
35
- url 'https://pkgs.dev.azure.com/OutSystemsRD/9e79bc5b-69b2-4476-9ca5-d67594972a52/_packaging/PublicArtifactRepository/maven/v1'
36
- name 'Azure'
37
- credentials {
38
- username = "optional"
39
- password = ""
40
- }
41
- content {
42
- includeGroup "com.github.outsystems"
43
- }
44
- }
45
- }
46
- }
47
- ```
48
-
49
27
## Usage Example
50
28
#### Open In External Browser
51
29
``` typescript
Original file line number Diff line number Diff line change @@ -10,17 +10,6 @@ buildscript {
10
10
repositories {
11
11
google()
12
12
mavenCentral()
13
- maven {
14
- url ' https://pkgs.dev.azure.com/OutSystemsRD/9e79bc5b-69b2-4476-9ca5-d67594972a52/_packaging/PublicArtifactRepository/maven/v1'
15
- name ' Azure'
16
- credentials {
17
- username = " optional"
18
- password = " "
19
- }
20
- content {
21
- includeGroup " com.github.outsystems"
22
- }
23
- }
24
13
}
25
14
dependencies {
26
15
classpath ' com.android.tools.build:gradle:8.2.2'
@@ -59,24 +48,13 @@ android {
59
48
repositories {
60
49
google()
61
50
mavenCentral()
62
- maven {
63
- url ' https://pkgs.dev.azure.com/OutSystemsRD/9e79bc5b-69b2-4476-9ca5-d67594972a52/_packaging/PublicArtifactRepository/maven/v1'
64
- name ' Azure'
65
- credentials {
66
- username = " optional"
67
- password = " "
68
- }
69
- content {
70
- includeGroup " com.github.outsystems"
71
- }
72
- }
73
51
}
74
52
75
53
76
54
dependencies {
77
55
// implementation fileTree(dir: 'libs', include: ['*.jar'])
78
56
implementation project(' :capacitor-android' )
79
- implementation " com.github.outsystems :osinappbrowser-android:1.+@aar "
57
+ implementation " com.capacitorjs :osinappbrowser-android:1.0.0 "
80
58
implementation ' androidx.browser:browser:1.8.0'
81
59
implementation " androidx.constraintlayout:constraintlayout:2.2.0-alpha13"
82
60
implementation " androidx.appcompat:appcompat:$androidxAppCompatVersion "
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ buildscript {
7
7
mavenCentral()
8
8
}
9
9
dependencies {
10
- classpath ' com.android.tools.build:gradle:8.2.2 '
10
+ classpath ' com.android.tools.build:gradle:8.5.0 '
11
11
classpath ' com.google.gms:google-services:4.4.2'
12
12
13
13
// NOTE: Do not place your application dependencies here; they belong
@@ -21,17 +21,6 @@ allprojects {
21
21
repositories {
22
22
google()
23
23
mavenCentral()
24
- maven {
25
- url ' https://pkgs.dev.azure.com/OutSystemsRD/9e79bc5b-69b2-4476-9ca5-d67594972a52/_packaging/PublicArtifactRepository/maven/v1'
26
- name ' Azure'
27
- credentials {
28
- username = " optional"
29
- password = " "
30
- }
31
- content {
32
- includeGroup " com.github.outsystems"
33
- }
34
- }
35
24
}
36
25
}
37
26
Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
distributionPath =wrapper/dists
3
- distributionUrl =https\://services.gradle.org/distributions/gradle-8.2.1 -all.zip
3
+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.7 -all.zip
4
4
networkTimeout =10000
5
5
validateDistributionUrl =true
6
6
zipStoreBase =GRADLE_USER_HOME
You can’t perform that action at this time.
0 commit comments