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.
Go to documents directory and create a folder with name com
Extract zip library files into com directory
/Users/ab_morphious/Documents/com
Go to project build.gradle and add the following repositories
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() } }
Go to app build.gradle file and add the following implementation
implementation('com.wooqer.modules:wooqer-lib:3.2.20')
Go to manifest file and add the following inside application tag
tools:replace="android:allowBackup,android:supportsRtl,android:icon"
Go to gradle.properties file and add the following two lines if they do not exist.
android.useAndroidX=true android.enableJetifier=true
To start Knowledge-Base from within your app, use the example below:
Button b = (Button)findViewById(R.id.button); b.setOnClickListener((view -> { Intent i = new Intent(MainActivity.this, com.android.wooqer.SplashScreen.class); startActivity(i); }));
Wooqer Knowledge Base is integrated