Skip to content
This repository has been archived by the owner on May 10, 2021. It is now read-only.

Commit

Permalink
Merge pull request #42 from girigiramesh/Targetlevel_28
Browse files Browse the repository at this point in the history
Includes CordovaLib-release.aar and aemm-lib-release.aar file version…
  • Loading branch information
aman2604 authored Sep 16, 2019
2 parents 13840f0 + 80cab65 commit 4c6e19a
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 9 deletions.
5 changes: 5 additions & 0 deletions RELEASENOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@
-->
## Release Notes for AEMM Android ##

### 8.0.0 (Sep 12, 2019)
#### Features
* Includes CordovaLib-release.aar and aemm-lib-release.aar file version 2019.9
* Updates targetSdkVersion to 28

### 7.1.4-2 (Aug 2, 2019)
#### Features
* Includes aemm-lib-release.aar file version 2019.8
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.1.4-2
8.0.0
2 changes: 1 addition & 1 deletion bin/lib/create.js
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ exports.create = function(project_path, config, options, events) {
copyBuildRules(project_path);
});
// Link it to local android install.
writeProjectProperties(project_path, 'android-27'); // TODO? usually target_api
writeProjectProperties(project_path, 'android-28'); // TODO? usually target_api
prepBuildFiles(project_path);
events.emit('log', generateDoneMessage('create', options.link));
}).thenResolve(project_path);
Expand Down
2 changes: 1 addition & 1 deletion bin/templates/cordova/version
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
*/

// Coho updates this line:
var VERSION = "7.1.4";
var VERSION = "8.0.0";

module.exports.version = VERSION;

Expand Down
6 changes: 3 additions & 3 deletions bin/templates/project/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,13 @@ dependencies {
// PLUGIN GRADLE EXTENSIONS END

android {
compileSdkVersion 27
buildToolsVersion "27.0.1"
compileSdkVersion 28
buildToolsVersion "28.0.3"

defaultConfig {
applicationId "com.adobe.dps.viewer"
minSdkVersion 22
targetSdkVersion 27
targetSdkVersion 28
versionName "0.1.0"
versionCode 1
resValue "bool", "isDevPreview", "true"
Expand Down
Binary file modified bin/templates/project/libs/CordovaLib-release.aar
Binary file not shown.
Binary file modified bin/templates/project/libs/aemm-lib-release.aar
Binary file not shown.
2 changes: 1 addition & 1 deletion framework/project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# Indicates whether an apk should be generated for each density.
split.density=false
# Project target.
target=android-27
target=android-28
apk-configurations=
renderscript.opt.level=O0
android.library=true
2 changes: 1 addition & 1 deletion framework/src/org/apache/cordova/CordovaWebView.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Licensed to the Apache Software Foundation (ASF) under one
* are not expected to implement it.
*/
public interface CordovaWebView {
public static final String CORDOVA_VERSION = "7.1.4-2";
public static final String CORDOVA_VERSION = "8.0.0";

void init(CordovaInterface cordova, List<PluginEntry> pluginEntries, CordovaPreferences preferences);

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cordova-android",
"version": "7.1.4-2",
"version": "8.0.0",
"description": "aemm-android release",
"bin": {
"create": "bin/create"
Expand Down

0 comments on commit 4c6e19a

Please sign in to comment.