Langsung ke konten utama

Postingan

Menampilkan postingan dengan label library

Youtube Video link to mp3 file - Library

Library to Download youtube video as mp3 files Created By How to Download Gradle: compile 'com.ajts.androidmads.youtubemp3:youtubemp3:1.0.0' Maven: <dependency> <groupId>com.ajts.androidmads.youtubemp3</groupId> <artifactId>youtubemp3</artifactId> <version>1.0.0</version> <type>pom</type> </dependency> How to use this Library: This Library is used to download mp3 file from youtube video link. new YTubeMp3Service.Builder(MainActivity.this) .setDownloadUrl("https://youtu.be/nZDGC-tXCo0") .setFolderPath(new File(Environment.getExternalStorageDirectory(), "/YTMp3/Downloads").getPath()) .setOnDownloadListener(new YTubeMp3Service.Builder.DownloadListener() { @Override public void onSuccess(String savedPath) { Log.v("exce", savedPath); progressDialog.dismiss(); } @Override public void onDownloadStarted() { ...

SQLite Importer Exporter - Library

A light weight library for exporting and importing sqlite database in android Created By How to Download Gradle: compile 'com.ajts.androidmads.sqliteimpex:library:1.0.0' Maven: <dependency> <groupId>com.ajts.androidmads.sqliteimpex</groupId> <artifactId>library</artifactId> <version>1.0.0</version> <type>pom</type> </dependency> How to use this Library: This Library is used to import SQLite Database from Assets or External path and Export/Backup SQLite Database to external path. SQLiteImporterExporter sqLiteImporterExporter = new SQLiteImporterExporter(getApplicationContext(), db); // Listeners for Import and Export DB sqLiteImporterExporter.setOnImportListener(new SQLiteImporterExporter.ImportListener() { @Override public void onSuccess(String message) { Toast.makeText(getApplicationContext(), message, Toast.LENGTH_SHORT).show(); } @Override public void onFailure(Exception exception...

SQLiteToExcel v1.0.1

This is a Light weight Library to Convert SQLite Database to Excel and Convert Excel to SQLite. I have already released version 1.0.0 . It is suitable to export SQLite Database to Excel. But, In version 1.0.1 I have Included following features Features Added Functionality to Import Excel into SQLite Database. Added Functionality to Export Blob into Image. Added Functionality to Export List of tables specified. Sample App The sample app in the repository is available on Google Play: How to Download Add the following library in your app level gradle file compile 'com.ajts.androidmads.SQLite2Excel:library:1.0.1' How to Use Add Permission to Read External Storage in AndriodManifest.xml <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> Export SQLite to Excel This line is used to save the exported file in default location. SqliteToExcel sqliteToExcel = new SqliteToExcel(this, "helloworld.db"); This line is used to save the exporte...

SQLiteToExcel - v1.0.0

SQLiteToExcel is a Light weight Library to Convert SQLite Database to Excel. I have Released Newer Version for this Library. If your Requirement is only to export your SQLite Database, then this library is very much suitable. Otherwise you requirement is to import or export excel to db or vice-versa, then you go for my newer release. Please visit here to see about SQLite2XL Version 1.0.1 How to Download add the following library in your app level gradle file compile 'com.ajts.androidmads.SQLite2Excel:library:1.0.0' How to Use 1.AndroidManifest.xml Add the following line in your Manifest file <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> 2.Library Initialization  This line is used to save the exported file in default location. SqliteToExcel sqliteToExcel = new SqliteToExcel(this, "helloworld.db"); This line is used to save the exported file in used preferred location. SqliteToExcel sqliteToExcel = new SqliteToExcel(this, ...

QR-Code Generator - Library

In this Post, I introduce my new Gradle Library. This Library is used to Generate QR Code Automatically for our specified input. How to Import the Library: Gradle: compile 'androidmads.library.qrgenearator:QRGenearator:1.0.0' Permission: <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> How to use this Library: After importing this library, use the following lines to use this library. The following lines are used to generated the QR Code // Initializing the QR Encoder with your value to be encoded, type you required and Dimension QRGEncoder qrgEncoder = new QRGEncoder(inputValue, null, QRGContents.Type.TEXT, smallerDimension); try { // Getting QR-Code as Bitmap bitmap = qrgEncoder.encodeAsBitmap(); // Setting Bitmap to ImageView qrImage.setImageBitmap(bitmap); } catch (WriterException e) { Log.v(TAG, e.toString()); } Save QR Code as Image // Save with location, value, bitmap returned and type of Image(JPG/PNG). QRGSaver.save(s...

Automatic Update Checker for Android - Library

Featured In  Created By How to use this Library: Gradle:  compile 'androidmads.updatehandler:updatehandler:1.0.3' Maven: <dependency> <groupId>androidmads.updatehandler</groupId> <artifactId>updatehandler</artifactId> <version>1.0.3</version> <type>pom</type> </dependency> How to use this Library:  After importing this library, use the following lines to check version update for your application automatically. /** * This library works in release mode only with the same JKS key used for * your Previous Version */ UpdateHandler updateHandler = new UpdateHandler(MainActivity.this); // to start version checker updateHandler.start(); // prompting intervals updateHandler.setCount(2); // to print new features added automatically updateHandler.setWhatsNew(true); // to enable or show default dialog prompt for version update updateHandler.showDefaultAlert(true); // listener for custom update prompt updateHandler.se...