DaggerAutoInject


Source link: https://github.com/florent37/DaggerAutoInject

DaggerAutoInject

Inject automatically your Activities & Fragments, just with a simple annotation

@InjectActivity public class MainActivity extends AppCompatActivity {

@Inject
  SharedPreferences sharedPreferences;

@Override
  protected void onCreate(@Nullable Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

  
}

@Override
  protected void onStart() {

super.onStart();

sharedPreferences.edit()

.putString("androidVerions", "O")

.apply();

  
}
  
}

Download

In your module

def dagger_version = "2.11-rc2"  dependencies {

  compile 'com.github.florent37:dagger-auto-inject:1.0.0'
  annotationProcessor 'com.github.florent37:dagger-auto-inject-compiler:1.0.0'

//dagger2
  compile "com.google.dagger:dagger:$dagger_version"
  compile "com.google.dagger:dagger-android:$dagger_version"
  compile "com.google.dagger:dagger-android-support:$dagger_version"

annotationProcessor "com.google.dagger:dagger-android-processor:$dagger_version"
  annotationProcessor "com.google.dagger:dagger-compiler:$dagger_version" 
}

Component

Just add generated ActivityModule.class and FragmentModule.class into your Dagger's component

@Singleton @Component(modules = {

AppModule.class,

 AndroidInjectionModule.class,

AndroidSupportInjectionModule.class,

 ActivityModule.class,

FragmentModule.class, 
}
) public interface AppComponent {

  void inject(MainApplication application);

@Component.Builder
  interface Builder {

@BindsInstance

Builder application(Application application);

AppComponent build();

  
}
 
}

Setup Application

Just annotate your application with @InjectApplication givin your Component, then call DaggerAutoInject.init(this);

Don't forget to implement HasActivityInjector as follow

@InjectApplication(component = AppComponent.class) public class MainApplication extends Application implements HasActivityInjector {

@Inject
  DispatchingAndroidInjector<Activity> activityAndroidInjector;

@Override
  public void onCreate() {

super.onCreate();

final AppComponent appComponent = DaggerAppComponent.builder()

 .application(this)

 .build();

DaggerAutoInject.init(this, appComponent);

  
}

@Override
  public AndroidInjector<Activity> activityInjector() {

return activityAndroidInjector;
  
}
 
}

Inject Fragment

Just add @InjectFragment to your fragment

@InjectFragment public class MainFragment extends Fragment {

@Inject
  SharedPreferences sharedPreferences;

public static MainFragment newInstance() {

return new MainFragment();

  
}

@Nullable
  @Override
  public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {

return inflater.inflate(R.layout.fragment_main, container, false);

  
}

@Override
  public void onActivityCreated(@Nullable Bundle savedInstanceState) {

super.onActivityCreated(savedInstanceState);

System.out.println(sharedPreferences.getAll());

  
}
 
}

Then in your Activity / BaseActivity, implements HasSupportFragmentInjector

public class BaseActivity extends AppCompatActivity implements HasSupportFragmentInjector {

@Inject
  DispatchingAndroidInjector<Fragment> dispatchingFragmentInjector;

@Override
  public AndroidInjector<Fragment> supportFragmentInjector() {

return dispatchingFragmentInjector;
  
}
 
}

Credits

Author: Florent Champigny

License

Copyright 2017 florent37, Inc.  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

A Powerful Android Content Provider ORM. It uses Content Providers to access the data and internally uses SQLite to actually store the data. It can be used as a typical ORM, by creating Java objects and applying some Annotations and/or by extending QuantumFluxRecord on them and they will be accessed normally and creates ContentProvider.

GraphHopper is a fast and memory efficient Java road routing engine. By default it uses OpenStreetMap data, but can import other data sources.

This plugin provides allows to show drawable resources of the android project, supports IntelliJ IDEA and Android Studio.

The mapsforge project provides free and open software for the rendering of maps based on OpenStreetMap data.

A plugin for AndroidStudio/Intellij that creates Data Transfer Objects(DTO) from the given feed.

ReactiveNetwork is an Android library listening network connection state and change of the WiFi signal strength with RxJava Observables. It's a successor of Network Events library rewritten with Reactive Programming approach.

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