Skip to content

Commit

Permalink
Merge
Browse files Browse the repository at this point in the history
  • Loading branch information
NiklasMerz committed Jan 5, 2019
2 parents 63e4ae5 + 68cccd5 commit 79e1ebb
Show file tree
Hide file tree
Showing 71 changed files with 4,013 additions and 1,807 deletions.
2 changes: 1 addition & 1 deletion android/app/capacitor.build.gradle
@@ -1,5 +1,5 @@
// DO NOT EDIT THIS FILE! IT IS GENERATED EACH TIME "capacitor update" IS RUN

apply from: "../capacitor-cordova-android-plugins/cordova.variables.gradle"
dependencies {


Expand Down
45 changes: 45 additions & 0 deletions android/capacitor-cordova-android-plugins/build.gradle
@@ -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
@@ -0,0 +1,4 @@
// DO NOT EDIT THIS FILE! IT IS GENERATED EACH TIME "capacitor update" IS RUN
ext {
cdvMinSdkVersion = 21
}
@@ -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>
<uses-permission android:name="android.permission.USE_FINGERPRINT"/>
</manifest>
Empty file.

0 comments on commit 79e1ebb

Please sign in to comment.