Wooqer Knowledge Base

This is an android module which when integrated into your app will provide you access to wooqer knowledge base . All the chapters and modules shared with you in wooqer will be accessible into your app.

Step 0

Latest Zip having AAR file

Download Latest Zip

Step 1

Go to documents directory and create a folder with name com
Extract zip library files into com directory

example

 /Users/ab_morphious/Documents/com

Step 2

Go to project build.gradle and add the following repositories

project/build.gradle

allprojects {
   repositories {
       maven { url “https://maven.google.com”}
       maven { url ‘https://maven.zohodl.com’}
       jcenter()
       maven {
           url “/Users/your-user-name/Documents/”  
       }
       maven {
           url “https://jitpack.io”
       }

       maven {
           url ‘http://dl.bintray.com/amulyakhare/maven’
           allowInsecureProtocol = true
       }
       maven {
           url “https://s3.amazonaws.com/repo.commonsware.com”
       }
       google()
   }
}

Step 3

Go to app build.gradle file and add the following implementation

 

app/build.gradle

implementation('com.wooqer.modules:wooqer-lib:3.2.20')

Step 4

Go to manifest file and add the following inside application tag

 

AndroidManifest.xml

tools:replace="android:allowBackup,android:supportsRtl,android:icon"

Step 5

Go to gradle.properties file and add the following two lines if they do not exist.

 

gradle.properties

android.useAndroidX=true
android.enableJetifier=true

Step 6

To start Knowledge-Base from within your app, use the example below:

Example

Button b = (Button)findViewById(R.id.button);
b.setOnClickListener((view -> {
   
Intent i = new Intent(MainActivity.this, com.android.wooqer.SplashScreen.class);

startActivity(i);

}));

Done

Wooqer Knowledge Base is integrated