Description
A library which will save you a lot of time from writing the same intent creation code. it consist of many intent creation codes like Share, Contacts, Email and etc, which you can easily use.
Android-Intent-Library alternatives and similar packages
Based on the "Tools" category.
Alternatively, view Android-Intent-Library alternatives based on common mentions on social networks and blogs.
-
vectalign
Tool for create complex morphing animations using VectorDrawables (allows morphing between any pair of SVG images) -
maven-android-sdk-deployer
A tool to install components of the Android SDK into a Maven repository or repository manager to use with the Android Maven Plugin, Gradle and other tools. -
Uber Apk Signer
A cli tool that helps signing and zip aligning single or multiple Android application packages (APKs) with either debug or provided release certificates. It supports v1, v2 and v3 Android signing scheme has an embedded debug keystore and auto verifies after signing. -
android-resource-remover
A simple utility to remove unused resources in your Android app to lower the size of the APK. It's based on the Android lint tool output. -
AndroidLocalizationer
DISCONTINUED. This is a Android Studio/ IntelliJ IDEA plugin to localize your Android app, translate your string resources automactically. -
Debug Bottle
🍼Debug Bottle is an Android runtime debug / develop tools written using kotlin language. -
density-converter
A multi platform image density converting tool converting single or batches of images to Android, iOS, Windows or CSS specific formats and density versions given the source scale factor or width/height in dp. It has a graphical and command line interface and supports many image types (svg, psd, 9-patch, etc.) aswell as some lossless compressors like pngcrush. -
USB-Device-Info
This application will provide information about almost all currently plugged-in USB devices. -
TaggerString
TaggerString is very light library which allows to build dynamic string resource in much more readable way. -
release-android-library
Remote script to create a maven compatible release of an android library (aar) -
Uber Adb Tools for Android
A tool that enables advanced features through adb installing and uninstalling apps like wildcards and multi device support. Useful if you want to clean your test device from all company apks or install a lot of apks in one go. Written in Java so it should run on your platform.
InfluxDB - Purpose built for real-time analytics at any scale.
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Android-Intent-Library or a related project?
README
Android-Intent-Library
A library which will save you a lot of time from writing the same intent creation code. it consist of many intent creation codes like Share, Contacts, Email and etc, which you can easily use.
<!--- AllIntents SettingIntent DialIntent --->
Contents
💻How to include
Add the repository to your project build.gradle:
allprojects {
repositories {
maven { url "https://jitpack.io" }
}
}
And add the library to your module build.gradle:
dependencies {
implementation 'com.github.mohammadima3oud:Android-Intent-Library:1.0.0'
}
📄Usage
Showing the intent immediately
SettingIntents.from(this).setting().show();
SettingIntents.from(this).applicationSetting().show();
Build the intent and show it your self
startActivity(SettingIntents.from(this).setting().build());
startActivity(SettingIntents.from(this).applicationSetting().build());
📄List of Intents
- ### AlarmIntents
Java openAlarms() createAlarm(String message, int hour, int minutes, boolean skipUi) createAlarm(String message, int hour, int minutes, boolean skipUi, boolean vibrate) createAlarm(String message, int hour, int minutes, boolean skipUi, boolean vibrate, boolean isPm)
ExampleJava AlarmIntents.from(this).openAlarms().show();
- ### BrowserIntents
Java openBrowser() openLink(String url) openLink(Uri uri) openGoogle()
ExampleJava BrowserIntents.from(this).openBrowser().show();
- ### CalculatorIntents
Java openCalculator()
ExampleJava CalculatorIntents.from(this).openCalculator().show();
- ### CalendarIntents
Java openCalendar()
ExampleJava CalendarIntents.from(this).openCalendar().show();
- ### CameraIntents
Java openPhotoCamera() openVideoCamera() capturePhoto(Uri location, String fileName) captureVideo(Uri location, String fileName)
ExampleJava startActivityForResult(CameraIntents.from(this).openPhotoCamera().build(), RequestTag.IMAGE_CAMERA);
- ### ContactIntents
Java openContacts() viewContact(String name) editContact(String name) editContact(String name, String newEmail) insertContact(String name, String phone, String email, String company, String job, String notes) pickContact() pickSpecificContactData()
ExampleJava ContactIntents.from(this).openContacts().show();
- ### EmailIntents
Java openEmail() sendEmail(String to, String subject, String message) sendEmail(String[] to, String subject, String message) sendEmail(String[] addresses, String[] cc, String[] bcc, String subject, String message)
ExampleJava EmailIntents.from(this).openEmail().show();
- ### EventIntents
Java createEvent(String title, String description) createEvent(String title, String description, String location, long begin, long end, int color, boolean allDay)
ExampleJava EventIntents.from(this).createEvent("Birthday", "Make a birthday cake").show();
- ### FileIntents
Java fileChooser() pickFile() pickImageFile() pickImageFile(Boolean allowMultiple, Boolean localOnly)
ExampleJava startActivityForResult(FileIntents.from(this).fileChooser().build(), RequestTag.FILE_CHOOSE);
- ### GalleryIntents
Java openGallery() pickImage()
ExampleJava startActivityForResult(GalleryIntents.from(this).pickImage().build(), RequestTag.PICK_IMAGE);
- ### MapIntents
Java locationOf(String address, String placeTitle) locationOf(float latitude, float longitude) locationOf(float latitude, float longitude, String placeName) navigateTo(String address) navigateTo(float latitude, float longitude) streetViewOf(float latitude, float longitude) streetViewOf(float latitude, float longitude, float zoom) streetViewOf(float latitude, float longitude, float zoom, int mapZoom) showLocationServices()
ExampleJava MapIntents.from(this).locationOf("Champ de Mars, Avenue Anatole France, Paris, France", "Eiffel Tower").show();
- ### MarketIntents
Java showThisAppInMarket() showThisAppInGooglePlay() showThisAppInAmazon() showInMarket(String packageName) showInGooglePlay(String packageName) showInAmazon(String packageName) showGooglePlay() searchAppInGooglePlay(String appName)
ExampleJava MarketIntents.from(this).showInMarket("com.instagram.android").show();
- ### MediaIntents
Java playAudio(String url) showImage(String url) playVideo(String url) playYouTubeVideo(String videoId)
ExampleJava MediaIntents.from(this).playYouTubeVideo("gOzdLhJG2EQ").show();
- ### MessagingIntents
Java openMessages() createEmptySms() createEmptySms(String phoneNumber) createEmptySms(String[] phoneNumbers) createSms(String body) createSms(String body, String phoneNumber) createSms(String body, String[] phoneNumbers)
ExampleJava MessagingIntents.from(this).createEmptySms().show();
- ### MusicIntents
Java openPlayMusic()
ExampleJava MusicIntents.from(this).openPlayMusic().show();
- ### PhoneIntents
Java showDialNumber() showDialNumber(String phoneNumber) callNumber(String phoneNumber)
ExampleJava PhoneIntents.from(this).showDialNumber().show();
- ### SearchIntents
Java searchInGooglePlay(String query) searchWeb(String query)
ExampleJava SearchIntents.from(this).searchInGooglePlay("Instagram").show();
- ### SettingIntents
Java setting() apnSetting() bluetoothSetting() dateSetting() displaySetting() localeSetting() securitySetting() wifiSetting() wirelessSetting() accessibilitySetting() applicationSetting() captioningSetting() castSetting() dreamSetting() airplaneModeSetting() inputMethodSetting() locationSourceSetting() internalStorageSetting() memoryCardSetting() homeSetting() nfcSetting() nfcSharingSetting() nfcPaymentSetting() printSetting() privacySetting() searchSetting() soundSetting() syncSetting() webViewSetting() vpnSetting() applicationDetailSetting(String packageName) applicationDevelopmentSetting() batterySaverSetting() dataRoamingSetting() deviceInfoSetting() hardKeyboardSetting() manageApplicationSetting() manageWriteSetting() networkOperatorSetting() notificationListenerSetting() usageAccessSetting() userDictionarySetting() voiceInputSetting() vrListenerSetting() wifiIpSetting() ignoreBatteryOptimizationSetting() manageAllApplicationSetting() manageDefaultAppsSetting() inputMethodSubtypeSetting() notificationPolicyAccessSetting() ignoreBackgroundDataRestrictionsSetting(String packageName)
ExampleJava SettingIntents.from(this).setting().show();
- ### ShareIntents
Java shareText(String subject, String message) shareText(String subject, String message, String chooserDialogTitle)
ExampleJava ShareIntents.from(this).shareText("Subject example","message example").show();
- ### TimerIntents
Java createTimer(String subject, int seconds, boolean skipUi)
ExampleJava TimerIntents.from(this).createTimer("Run", 180, false).show();
- ### VoiceRecorderIntents
Java openVoiceRecorder()
ExampleJava startActivityForResult(VoiceRecorderIntents.from(this).openVoiceRecorder().build(), RequestTag.RECORD_VOICE);
❓FAQ
some intents will return data, which should be handeled in onActivityResult, use .build and startActivityForResult for them. Example
startActivityForResult(VoiceRecorderIntents.from(this).openVoiceRecorder().build(), RequestTag.RECORD_VOICE);
Android-Intent-Library doesn't handle the returned data, you need to handle them your self in onActivityResult.
Checkout My Libraries
- Android-Intent-Library: A library which will save you a lot of time from writing the same intent creation code. it consist of many intent creation codes like Share, Contacts, Email and etc, which you can easily use.
- Material-Resources-Library: A list of most useful resources for designing android apps such as all material colors and dimens, 180 Gradient background + html, social, flat, fluent, metro colors.
- Complete-Google-Map-API-Tutorial: Learn How to use Google Map API for Android from Basic to Advance with complete examples.
- DropSignIn: Sign In UI Design
- BlueSignIn: Sign In and Sign Up Ui Design
💰 Donations
This project needs you! If you would like to support this project's further development, the creator of this project or the continuous maintenance of this project, feel free to donate. Your donation is highly appreciated (and I love food, coffee and beer). Thank you!
PayPal
- Donate $5: Thank's for creating this project, here's a tea (or some juice) for you!
- Donate $10: Wow, I am stunned. Let me take you to the movies!
- Donate $15: I really appreciate your work, let's grab some lunch!
- Donate $25: That's some awesome stuff you did right there, dinner is on me!
- Donate $50: I really really want to support this project, great job!
- Donate $100: You are the man! This project saved me hours (if not days) of struggle and hard work, simply awesome!
- Donate $2799: Go buddy, buy Macbook Pro for yourself!
Of course, you can also choose what you want to donate, all donations are awesome!
📄Hall of Fame
<!--- Owly --->
Using Android-Intent-Library in your app and want it to get listed here? Email me at: [email protected]
📄Changelog
See the [CHANGELOG.md](CHANGELOG.md) file.
👍Contribution
See the [CONTRIBUTING.md](CONTRIBUTING.md) file.
<!---
👨Developed By
--->
📃License
Copyright 2019 mohammadima3oud
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*Note that all licence references and agreements mentioned in the Android-Intent-Library README section above
are relevant to that project's source code only.