[TOC]
Just In Develop Do not use
Android Cordova provides :
- use cordova 6.1.0
Full method count 00
Less Runtime :
- minSdkVersion 4
- gradle or maven
- jar You can Download just like this Path
eclipse just use every repo at version
temp-x.x.x-jarLib.jar
Project Runtime:
- Android Studio 2.2
- appcompat-v7:23.4.0
- Gradle 2.14.1
- com.android.tools.build:gradle:2.2.0
- minSdkVersion 15
- version 0.0.1
- repo at https://github.com/MDL-Sinlov/MDL-Android-Repo
at root project build.gradle
repositories {
maven {
url 'https://raw.githubusercontent.com/MDL-Sinlov/MDL-Android-Repo/master/mvn-repo/'
}
jcenter()
...
}
in module build.gradle
dependencies {
compile 'mdl.sinlov.android:temp:0.0.1'
}
add Module src/main/res/xml/config.xml
<?xml version="1.0" encoding="utf-8"?>
<widget
id="your package name"
version="0.0.1">
<content src="index.html" />
<feature name="xxxxx">
<param
name="android-package"
value="your package name.xxxxx" />
<param
name="onload"
value="true" />
</feature>
<preference
name="loglevel"
value="DEBUG" />
<preference
name="useBrowserHistory"
value="true" />
<preference
name="exit-on-suspend"
value="false" />
<preference
name="showTitle"
value="true" />
</widget>
must change
- your package name
- 0.0.1
- xxxxx
- your package name.xxxxx
###License
Copyright 2016 [email protected]
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.