metadidomi-builder 1.4.171125 → 1.4.201125

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,46 @@
1
+ plugins {
2
+ id 'com.android.application'
3
+ }
4
+
5
+ android {
6
+ namespace 'com.metadidomi.app'
7
+ compileSdk {COMPILE_SDK_VERSION}
8
+
9
+ defaultConfig {
10
+ applicationId '{PACKAGE_NAME}'
11
+ minSdk {MIN_SDK_VERSION}
12
+ targetSdk {TARGET_SDK_VERSION}
13
+ versionCode 1
14
+ versionName '{APP_VERSION}'
15
+
16
+ testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
17
+ }
18
+
19
+ buildTypes {
20
+ release {
21
+ minifyEnabled false
22
+ proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
23
+ }
24
+ debug {
25
+ debuggable true
26
+ }
27
+ }
28
+
29
+ compileOptions {
30
+ sourceCompatibility JavaVersion.VERSION_11
31
+ targetCompatibility JavaVersion.VERSION_11
32
+ }
33
+
34
+ packagingOptions {
35
+ exclude 'META-INF/proguard/androidx-*.pro'
36
+ }
37
+ }
38
+
39
+ dependencies {
40
+ implementation 'androidx.appcompat:appcompat:1.6.1'
41
+ implementation 'com.google.android.material:material:1.9.0'
42
+ implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
43
+ testImplementation 'junit:junit:4.13.2'
44
+ androidTestImplementation 'androidx.test.ext:junit:1.1.5'
45
+ androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
46
+ }
@@ -0,0 +1,18 @@
1
+ pluginManagement {
2
+ repositories {
3
+ gradlePluginPortal()
4
+ google()
5
+ mavenCentral()
6
+ }
7
+ }
8
+
9
+ dependencyResolutionManagement {
10
+ repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
11
+ repositories {
12
+ google()
13
+ mavenCentral()
14
+ }
15
+ }
16
+
17
+ rootProject.name = "{APP_NAME_SAFE}"
18
+ include ':app'
package/package.json CHANGED
@@ -1,20 +1,32 @@
1
1
  {
2
2
  "name": "metadidomi-builder",
3
- "version": "1.4.171125",
3
+ "version": "1.4.201125",
4
4
  "description": "Multi-builder. Support Windows, macOS et Linux en développement.",
5
5
  "scripts": {
6
6
  "build": "node build_tools/builder.js",
7
- "start": "electron app_src"
7
+ "start": "electron app_src",
8
+ "help": "node build_tools/commands-help.js",
9
+ "help:electron": "node build_tools/commands-help.js electron",
10
+ "help:python": "node build_tools/commands-help.js python",
11
+ "help:utilities": "node build_tools/commands-help.js utilities",
12
+ "help:variables": "node build_tools/commands-help.js variables",
13
+ "help:protections": "node build_tools/commands-help.js protections",
14
+ "help:examples": "node build_tools/commands-help.js examples",
15
+ "help:all": "node build_tools/commands-help.js all"
8
16
  },
9
17
  "bin": {
10
- "metadidomi-builder": "build_tools/builder.js"
18
+ "metadidomi-builder": "build_tools/builder.js",
19
+ "metadidomi-builder-help": "build_tools/commands-help.js"
11
20
  },
12
21
  "files": [
13
- "build_tools/",
22
+ "build_tools/*.js",
23
+ "build_tools/templates/",
24
+ "build_tools/certs/",
25
+ "build_tools/build_tools/",
26
+ "build_tools_py/",
14
27
  "app_src/",
15
28
  "config.build.yaml",
16
- "README.md",
17
- "build_tools_py/"
29
+ "README.md"
18
30
  ],
19
31
  "keywords": [
20
32
  "electron",
Binary file