Home

Awesome

Titanium module for Appwrite

<img src="images/screenshot.png" alt="screenshot"/>

Titanium Android module using Appwrite's Android SDK

What is Appwrite:

Appwrite is an open-source backend as a service server that abstract and simplify complex and repetitive development tasks behind a very simple to use REST API. Appwrite aims to help you develop your apps faster and in a more secure way. Use the Android SDK to integrate your app with the Appwrite server to easily start interacting with all of Appwrite backend APIs and tools. For full API documentation and tutorials go to https://appwrite.io/docs

Installation

<application>
	<activity android:name="io.appwrite.views.CallbackActivity" android:exported="true">
		<intent-filter android:label="android_web_auth">
			<action android:name="android.intent.action.VIEW"/>
			<category android:name="android.intent.category.DEFAULT"/>
			<category android:name="android.intent.category.BROWSABLE"/>
			<data android:scheme="appwrite-callback-[PROJECT_ID]"/>
		</intent-filter>
	</activity>
</application>

Appwrite setup

Start the docker machine and create a new project. Make sure to add an Android platform with your package name. Under Settings you will find the Project ID.

Titanium setup

var appwrite = require("ti.appwrite");
appwrite.create({
	endpoint: SERVER_URL,
	project: PROJECT_ID,
	selfSigned: true,
	channels: ["files", "account"]
});

Full example: app.js<br/> Full tutorial at: from zero to app: Appwrite + Titanium: A step by step guide

Methods

Events

Author

<span class="badge-buymeacoffee"><a href="https://www.buymeacoffee.com/miga" title="donate"><img src="https://img.shields.io/badge/buy%20me%20a%20coke-donate-orange.svg" alt="Buy Me A Coke donate button" /></a></span>