Wiki

Clone wiki

libNODE-android-public / Project Configuration

Configuration

There are 2 different configuration setups for using the NODE.Framework: Maven Integration or Gradle Integration.

Gradle Integration

  • Define the dependency
    dependencies { 
        //Release Line, using the latest.integration will allow this to stay up to date with releases.
        compile "com.variable:node-android-framework:2.3.6"
      }
    
  • Define where the dependency is found.
    repositories {  
         maven { url = "http://variable-android.s3-website-us-east-1.amazonaws.com/release" }
    }
    

Maven Integration

  • Define the dependency
<dependency>
    <groupId>node.android.frameowrk</groupId>
    <artifactId>Android.API</artificatId>
    <!--Use this for the release line -->
    <version>2.3.6</version>
</dependency>
  • Define where the dependency is found.
    <repository>
        <releases>
            <enabled>true</enabled>
            <updatePolicy>always</updatePolicy>
            <checksumPolicy>warn</checksumPolicy>
        </releases>
        <id>maven-repo</id>
        <name>node-android-framework</name>
        <!-- Use this for the release line- -->
        <url>http://variable-android.s3-website-us-east-1.amazonaws.com/release</url>

Updated