couchbaselabs / TodoLite-PhoneGap

Basic todo list app for Couchbase Lite and PhoneGap

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

⚠️ This repo is obsolete. It was built against a version of Couchbase Lite that reached end of life years ago.

Todo Lite

A shared todo list application to demonstrate the features of Couchbase Lite.

Install

To run this application, you'll need the Xcode developer package, or the Android SDK, and the PhoneGap toolchain.

First create an empty PhoneGap app container using the PhoneGap npm package.

npm install -g phonegap
phonegap create todo-lite com.couchbase.TodoLite TodoLite
cd todo-lite

Now install the PhoneGap plugins required to make it run. This activates Couchbase Lite, the camera, and the InAppBrowser.

phonegap plugin add https://github.com/couchbaselabs/Couchbase-Lite-PhoneGap-Plugin.git
phonegap plugin add cordova-plugin-camera
phonegap plugin add https://github.com/apache/cordova-plugin-inappbrowser.git 
phonegap plugin add cordova-plugin-network-information

If you're using PhoneGap 5.0 or higher, you'll also need to install the Apache Cordova whitelist plugin to communicate with external services:

phonegap local plugin add cordova-plugin-whitelist

Now replace the generated application with the Todo Lite source code.

rm -rf www
git clone https://github.com/couchbaselabs/TodoLite-PhoneGap.git www

That's it, now you are ready to run the app:

phonegap run ios

or

phonegap run android

This will launch the app in your iOS or Android Simulator. If you want to launch the app on an iOS device, open the project in Xcode. From the project directory, you can run:

open platforms/ios/TodoLite.xcodeproj/

Do note that the Xcode project is only updated by the phonegap command line tool, so you must run phonegap run ios or phonegap build ios before it will pick up any changes made in the www directory.

At compile time, you may run into the following error message for Android:

Error: duplicate files during packaging of APK

To resolve this, you must extend the Gradle build file for Android as outlined in the official Apache Cordova documentation.

Create platforms/android/build-extras.gradle in your project and add the following:

// workaround for "duplicate files during packaging of APK" issue
// see https://groups.google.com/d/msg/adt-dev/bl5Rc4Szpzg/wC8cylTWuIEJ
android {
	packagingOptions {
		exclude 'META-INF/ASL2.0'
		exclude 'META-INF/LICENSE'
		exclude 'META-INF/NOTICE'
	}
}

Troubleshoot Latest PhoneGap 6.x on Android

By launching app by phonegap run android, phonegap could fail with printing following message.

Error: Could not find gradle wrapper within Android SDK. Might need to update your Android SDK.
Looked here: /Users/hideki/java/android-sdk-macosx/tools/templates/gradle/wrapper

solution:

  1. update Phonegap android plugin
phonegap platform rm android
phonegap platform add android@latest
  1. Update gradle version in build.gradle files. Both top level and application level build.gradle file
    dependencies {
        classpath 'com.android.tools.build:gradle:2.3.3'
	...
    }

Running your own Sync Gateway server

In www/js/index.js there is a value for syncUrl which is set to a remote server hosted by Couchbase as a convenience. You can easily provision your own server either by running your own instance of Couchbase Sync Gateway or by creating a server in the experimental Couchbase cloud.

If you are running your own server, launch it by pointing it at the sync-gateway-config.json that is shipped as part of this repository. If you are launching a Sync Gateway instance in the cloud, the only configuration you'll need to provide is to copy the sync function from that JSON file into the web UI.

Release Notes / TODO

  • Currently support for Android is limited by a few minor API compatiblity issues. These are probably fixed by the time you are reading this.
  • Redraw flash should be avoided. This is especially apparent on long lists.
  • Lists are too wide in portrait mode on iPad
  • The app won't detect if you get logged out (cookie expires) -- need testing.

Community

If you got this far, please join our mailing list and let us know how it went. Or just send a tweet.

About

Basic todo list app for Couchbase Lite and PhoneGap


Languages

Language:JavaScript 91.9%Language:HTML 6.2%Language:CSS 1.9%Language:Shell 0.1%