-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d5b4b53
commit be2f94c
Showing
10 changed files
with
67 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
buildscript { | ||
repositories { | ||
jcenter() | ||
google() | ||
} | ||
dependencies { | ||
classpath 'com.android.tools.build:gradle:3.1.1' | ||
} | ||
} | ||
|
||
apply plugin: 'com.android.library' | ||
|
||
android { | ||
compileSdkVersion 27 | ||
defaultConfig { | ||
minSdkVersion 21 | ||
targetSdkVersion 27 | ||
versionCode 1 | ||
versionName "1.0" | ||
} | ||
lintOptions { | ||
abortOnError false | ||
} | ||
} | ||
|
||
repositories { | ||
google() | ||
jcenter() | ||
mavenCentral() | ||
flatDir{ | ||
dirs 'src/main/libs', 'libs' | ||
} | ||
} | ||
|
||
dependencies { | ||
implementation fileTree(dir: 'src/main/libs', include: ['*.jar']) | ||
implementation 'org.apache.cordova:framework:7.0.0' | ||
// SUB-PROJECT DEPENDENCIES START | ||
|
||
// SUB-PROJECT DEPENDENCIES END | ||
} | ||
|
||
// PLUGIN GRADLE EXTENSIONS START | ||
apply from: "cordova.variables.gradle" | ||
// PLUGIN GRADLE EXTENSIONS END |
4 changes: 4 additions & 0 deletions
4
android/capacitor-cordova-android-plugins/cordova.variables.gradle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
// DO NOT EDIT THIS FILE! IT IS GENERATED EACH TIME "capacitor update" IS RUN | ||
ext { | ||
cdvMinSdkVersion = 21 | ||
} |
9 changes: 9 additions & 0 deletions
9
android/capacitor-cordova-android-plugins/src/main/AndroidManifest.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version='1.0' encoding='utf-8'?> | ||
<manifest package="capacitor.android.plugins" | ||
xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:amazon="http://schemas.amazon.com/apk/res/android"> | ||
<application> | ||
|
||
</application> | ||
|
||
</manifest> |
Empty file.
1 change: 1 addition & 0 deletions
1
android/capacitor-cordova-android-plugins/src/main/res/.gitkeep
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
// DO NOT EDIT THIS FILE! IT IS GENERATED EACH TIME "capacitor update" IS RUN | ||
include ':capacitor-android' | ||
project(':capacitor-android').projectDir = new File('../node_modules/@capacitor/android/capacitor') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
include ':app' | ||
include ':capacitor-android' | ||
project(':capacitor-android').projectDir = new File('../node_modules/@capacitor/android/capacitor/') | ||
include ':capacitor-android-plugins' | ||
project(':capacitor-android-plugins').projectDir = new File('../node_modules/@capacitor/cli/assets/capacitor-android-plugins/') | ||
include ':capacitor-cordova-android-plugins' | ||
project(':capacitor-cordova-android-plugins').projectDir = new File('./capacitor-cordova-android-plugins/') | ||
|
||
apply from: 'capacitor.settings.gradle' |