capacitor-autostartmanager 0.0.4 → 0.0.5

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.
@@ -1,18 +1,18 @@
1
1
  ext {
2
- junitVersion = project.hasProperty('junitVersion') ? rootProject.ext.junitVersion : '4.13.1'
3
- androidxAppCompatVersion = project.hasProperty('androidxAppCompatVersion') ? rootProject.ext.androidxAppCompatVersion : '1.2.0'
4
- androidxJunitVersion = project.hasProperty('androidxJunitVersion') ? rootProject.ext.androidxJunitVersion : '1.1.2'
5
- androidxEspressoCoreVersion = project.hasProperty('androidxEspressoCoreVersion') ? rootProject.ext.androidxEspressoCoreVersion : '3.3.0'
2
+ junitVersion = project.hasProperty('junitVersion') ? rootProject.ext.junitVersion : '4.13.2'
3
+ androidxAppCompatVersion = project.hasProperty('androidxAppCompatVersion') ? rootProject.ext.androidxAppCompatVersion : '1.6.1'
4
+ androidxJunitVersion = project.hasProperty('androidxJunitVersion') ? rootProject.ext.androidxJunitVersion : '1.1.5'
5
+ androidxEspressoCoreVersion = project.hasProperty('androidxEspressoCoreVersion') ? rootProject.ext.androidxEspressoCoreVersion : '3.5.1'
6
6
  }
7
7
 
8
8
  buildscript {
9
- ext.kotlin_version = '1.7.20-Beta'
9
+ ext.kotlin_version = project.hasProperty("kotlin_version") ? rootProject.ext.kotlin_version : '1.8.20'
10
10
  repositories {
11
11
  google()
12
12
  jcenter()
13
13
  }
14
14
  dependencies {
15
- classpath 'com.android.tools.build:gradle:4.2.1'
15
+ classpath 'com.android.tools.build:gradle:8.0.0'
16
16
  classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
17
17
  }
18
18
  }
@@ -21,10 +21,11 @@ apply plugin: 'com.android.library'
21
21
  apply plugin: 'kotlin-android'
22
22
 
23
23
  android {
24
- compileSdkVersion project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 30
24
+ namespace "io.github.asephermann.plugins.autostartmanager"
25
+ compileSdkVersion project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 33
25
26
  defaultConfig {
26
- minSdkVersion project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion : 21
27
- targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 30
27
+ minSdkVersion project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion : 22
28
+ targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 33
28
29
  versionCode 1
29
30
  versionName "1.0"
30
31
  testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
@@ -39,8 +40,8 @@ android {
39
40
  abortOnError false
40
41
  }
41
42
  compileOptions {
42
- sourceCompatibility JavaVersion.VERSION_1_8
43
- targetCompatibility JavaVersion.VERSION_1_8
43
+ sourceCompatibility JavaVersion.VERSION_17
44
+ targetCompatibility JavaVersion.VERSION_17
44
45
  }
45
46
  }
46
47
 
@@ -59,5 +60,5 @@ dependencies {
59
60
  androidTestImplementation "androidx.test.ext:junit:$androidxJunitVersion"
60
61
  androidTestImplementation "androidx.test.espresso:espresso-core:$androidxEspressoCoreVersion"
61
62
  implementation "androidx.core:core-ktx:1.6.0"
62
- implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
63
+ implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
63
64
  }
@@ -1,3 +1,3 @@
1
1
  <manifest xmlns:android="http://schemas.android.com/apk/res/android"
2
- package="io.github.asephermann.plugins.autostartmanager">
2
+ >
3
3
  </manifest>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "capacitor-autostartmanager",
3
- "version": "0.0.4",
3
+ "version": "0.0.5",
4
4
  "description": "Auto Start Manager, Check Automatic Date Time Zone, Check Camera",
5
5
  "main": "dist/plugin.cjs.js",
6
6
  "module": "dist/esm/index.js",