Skip to content

Commit 0475b9b

Browse files
committed
Add missing files
1 parent 3dedfd3 commit 0475b9b

File tree

2 files changed

+96
-0
lines changed

2 files changed

+96
-0
lines changed
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
buildscript {
2+
repositories {
3+
maven {
4+
name 'gulon'
5+
url "http://nexus.gluonhq.com/nexus/content/repositories/releases/"
6+
}
7+
8+
mavenLocal()
9+
jcenter()
10+
google()
11+
}
12+
13+
dependencies {
14+
classpath 'org.javafxports:jfxmobile-plugin:1.3.15'
15+
}
16+
}
17+
18+
apply plugin: 'org.javafxports.jfxmobile'
19+
20+
repositories {
21+
maven {
22+
name 'gulon'
23+
url "http://nexus.gluonhq.com/nexus/content/repositories/releases/"
24+
}
25+
26+
mavenLocal()
27+
jcenter()
28+
google()
29+
}
30+
31+
dependencies {
32+
androidRuntime 'com.gluonhq:charm-down-core-android:3.8.6'
33+
compile fileTree(dir: 'libs', include: ['*.jar'])
34+
}
35+
36+
jfxmobile {
37+
javafxportsVersion = '8.60.12'
38+
downConfig {
39+
version = '3.8.6'
40+
plugins 'browser', 'cache', 'device', 'display', 'lifecycle', 'settings', 'statusbar', 'storage', 'vibration', 'local-notifications'
41+
}
42+
android {
43+
manifest = "./android/AndroidManifest.xml"
44+
resourcesDirectory = new java.io.File("./android/")
45+
androidSdk = "%sdk-path%"
46+
compileSdkVersion = %sdk%
47+
buildToolsVersion = "%sdk-tools%"
48+
applicationPackage = "%id%"
49+
}
50+
}
51+
52+
mainClassName = "org.venity.jphp.ext.android.UXAndroidApplication"
53+
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
apply plugin: 'com.android.application'
2+
3+
buildscript {
4+
repositories {
5+
google()
6+
jcenter()
7+
}
8+
9+
dependencies {
10+
classpath 'com.android.tools.build:gradle:3.2.0'
11+
}
12+
}
13+
14+
repositories {
15+
google()
16+
jcenter()
17+
}
18+
19+
android {
20+
compileSdkVersion %sdk%
21+
buildToolsVersion "%sdk-tools%"
22+
23+
compileOptions {
24+
sourceCompatibility 1.8
25+
targetCompatibility 1.8
26+
}
27+
28+
defaultConfig {
29+
applicationId '%id%'
30+
minSdkVersion 14
31+
targetSdkVersion %sdk%
32+
}
33+
34+
lintOptions {
35+
abortOnError false
36+
}
37+
}
38+
39+
dependencies {
40+
implementation fileTree(dir: 'libs', include: ['*.jar'])
41+
implementation 'com.android.support:appcompat-v7:28.0.0'
42+
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
43+
}

0 commit comments

Comments
 (0)