Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

How to integrate .aar file to Eclipse

  • Download .aar file from bintray, you will get an .aar file: bluecats-android-sdk-${version}.aar
  • Change the extension to .zip from .aar, and unzip it into bluecats-android-sdk folder, for example.
  • In the folder bluecats-android-sdk, you will see a .jar file: classes.jar, change the name to a meaningful name, like bluecats-android-sdk.jar, copy it to your Eclipse project's "libs" folder.
  • In the folder bluecats-android-sdk/jni, you will see several ABI folders, copy all the folders into your Eclipse project's "libs" folder.
  • Your "libs" folder of eclipse project looks like this:
libs/
@tasyjean
tasyjean / build.gradle
Created June 9, 2018 18:08 — forked from nisrulz/build.gradle
Gradle : build.gradle file for a AAR Module Library Project
apply plugin: 'com.android.library'
android {
signingConfigs {
release {
try {
keyAlias KEYSTORE_ALIAS
keyPassword KEY_PASSWORD
storeFile file(KEYSTORE_FILEPATH)
storePassword KEYSTORE_PASSWORD
@tasyjean
tasyjean / GradleBuild.md
Created June 6, 2018 15:06 — forked from butelo/GradleBuild.md
Using Gradle with Android and Eclipse Projects

sudo apt-get update

sudo apt-get install software-properties-common

sudo add-apt-repository ppa:certbot/certbot

sudo apt-get update

sudo apt-get install certbot python-pip

Make these changes in the cassandra.yaml config file:

start_rpc: true

rpc_address: 0.0.0.0

broadcast_rpc_address: [node-ip]

listen_address: [node-ip]