AppIconNameChanger


Source link: https://github.com/myinnos/AppIconNameChanger

AppIconNameChanger

Change Android App launcher Icon and App Name programmatically !

Download Demo APK from HERE

Kindly use the following links to use this library:

In build.gradle (Project)

allprojects {
  repositories {
  ...  maven {
 url "https://jitpack.io" 
}
  
}
 
}

And then in the other gradle file(may be your app gradle or your own module library gradle, but never add in both of them to avoid conflict.)

dependencies {
  compile 'com.github.myinnos:AppIconNameChanger:1.0' 
}

How to use

Step 1: set activity alias in manifest file : #Example

<application

 .........

  <!-- main activity-->

  <activity android:name=".MainActivity" />

 <!-- setting activity-alias names-->

<activity-alias

 android:name="in.myinnos.changeappiconandname.MainActivity-settings"

 android:enabled="true"  //enabled by default launcher

 android:icon="@drawable/ic_settings"  //app icon

 android:label="@string/app_settings"  //app label/name

 android:targetActivity=".MainActivity">

 <intent-filter>

  <action android:name="android.intent.action.MAIN" />

  <category android:name="android.intent.category.LAUNCHER" />

 </intent-filter>

</activity-alias>

 <activity-alias

 android:name="in.myinnos.changeappiconandname.MainActivity-camera"

 android:enabled="false"

 android:icon="@drawable/ic_camera"  //app icon

 android:label="@string/app_camera" //app label/name

 android:targetActivity=".MainActivity">

 <intent-filter>

  <action android:name="android.intent.action.MAIN" />

  <category android:name="android.intent.category.LAUNCHER" />

 </intent-filter>

</activity-alias>

 .........  </application>

Step 2: implement App Icon Name Changer method : #Example

// Active alias name String activeName = "in.myinnos.changeappiconandname.MainActivity-settings";  // Disable alias names List<String> disableNames = new ArrayList<String>();
 disableNames.add("in.myinnos.changeappiconandname.MainActivity-camera");
 disableNames.add("in.myinnos.changeappiconandname.MainActivity-message");
  // Initiate App Icon Name Changer new AppIconNameChanger.Builder(MainActivity.this)

  .activeName(activeName) // String

  .disableNames(disableNames) // List<String>

  .packageName(BuildConfig.APPLICATION_ID)

  .build()

  .setNow();

IMP Note: To change application launcher icon and the application name should wait for 10 Seconds(MAX) to refresh the launcher.

Any Queries? or Feedback, please let me know by opening a new issue!

Contact

Prabhakar Thota

License

Copyright 2017 MyInnos  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. 

Resources

An extandable adapter which provides swipe to delete on your row item.

A View extended from WebView which is used to render math formula in latex using khanAcademy katex. In comparison with Mathjax, KhanAcademy katex renders much faster.

EasyNetwork - is powerful and easy-to-use http library for Android.

Features:

  • Functional "from the box": without mandatory primary configuration, anywhere in the code, functionally and simply.
  • Integration with Gson library.
  • There is a flexible functionality for hiding\showing\disabled the views, progress dialogs, swipeRefresh layout when the query is executed.
  • Visual logs.
  • Control tasks execution: cancel all tasks, cancel task by tag and other.
  • The ability to intercept the results of a request with certain parameters.
  • Separation of errors into: error (server) and failed (connection).
  • Handling the redirects.

Android Snooper is a HTTP inspector which leverages the interceptor mechanism provided by HTTP client and records all the HTTP calls made by the app. It then opens up an Activity to see the detailed history of HTTP calls made on onShake(When user shakes his device) event.

Session Cookie Reader.

Android menu option with expandable effect. What this lib can do:

  1. Menu will expand when user touch it and show menu options.
  2. You will get call back when user select menu.
  3. You can customize menu icons.
  4. Customize menu icon.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes