Aspose.BarCode for Android via Java Installation

System Requirements

Aspose.BarCode for Android via Java is platform-independent so it can be used on any platform where the Android Runtime environment is installed and will run on Android systems running Android OS 2.0 or greater. At present, the component has been tested with:

  • Android 5.1 v 22

Installation

  1. Download the latest version of Aspose.BarCode for Android via Java from Aspose Artifactory.
  2. Unzip the installation package and copy the aspose-barcode-android-20.10.jar file to your Java application.
  3. Provide a reference to the aspose-barcode-android-20.10.jar file so the compiler can find it.

Install Aspose.BarCode for Android via Java from Maven Repository

  1. Add maven repository into your build.gradle
  2. Add ‘Aspose.BarCode for Android via Java’ JAR as a dependency
 // 1. Add maven repository into your build.gradle 
 repositories {
    mavenCentral()
    maven { url "http://repository.aspose.com/repo/" }
 }
 
 // 2. Add 'Aspose.BarCode for Android via Java' JAR as a dependency 
 dependencies {
    ...
    ...
    compile (group: 'com.aspose', name: 'aspose-barcode', version: '20.10', classifier: 'android.via.java')
 }