npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

generator-android-app

v0.0.4

Published

Generate an Android app (Kotlin or Java) that uses Dagger, Retrofit, Room, Jetpack and Glide. https://github.com/alphamu/yo-android-app.git

Downloads

1

Readme

Yeoman Generator for an Android app

This generates a Java or Kotlin android app that is preconfigured with:

  • Dagger 2
  • Retrofit
  • Room
  • Jetpack
  • Glide

There is also a Dockerfile that allows you to build your code in clean environment to see if there are going to be any issues.

Requirements

  • Node (almost any version will do)
  • Yeoman
  • JDK 1.8
  • Android SDK
  • Android P (API 28)
  • Latest builds tools

Usage

Make sure yeoman is installed, if it's not, install it:

npm install -g yo

If Yeoman is installed, you can generate an app using:

npm install generator-android-app
yo android-app

This will result in something as follows:

? Name of your project: MyApp
? Package name for your project: com.ali.mu
? Java or Kotlin? (j/k): j
app name:  MyApp
app package:  com.ali.mu
app language:  j
/Users/muzaffar ali/Development/yo-android-app/generators/app/templates
/Users/muzaffar ali/Development/test
./MyApp/app/src/main/java/com/ali/mu
create MyApp/Dockerfile
create MyApp/README.MD
create MyApp/build-test-deploy.sh
create MyApp/build.gradle
create MyApp/gradle.properties
create MyApp/gradlew
create MyApp/gradlew.bat
create MyApp/settings.gradle
create MyApp/app/build.gradle
create MyApp/app/proguard-rules.pro
create MyApp/gradle/wrapper/gradle-wrapper.jar
create MyApp/gradle/wrapper/gradle-wrapper.properties
create MyApp/app/schemas/com.alimuzaffar.blank.database.TheDatabase/1.json
create MyApp/app/src/main/AndroidManifest.xml
create MyApp/app/src/main/res/drawable/ic_launcher_background.xml
create MyApp/app/src/main/res/drawable-v24/ic_launcher_foreground.xml
create MyApp/app/src/main/res/layout/main_activity.xml
create MyApp/app/src/main/res/layout/main_fragment.xml
create MyApp/app/src/main/res/menu/menu_main.xml
create MyApp/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
create MyApp/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
create MyApp/app/src/main/res/mipmap-hdpi/ic_launcher.png
create MyApp/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
create MyApp/app/src/main/res/mipmap-mdpi/ic_launcher.png
create MyApp/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
create MyApp/app/src/main/res/mipmap-xhdpi/ic_launcher.png
create MyApp/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
create MyApp/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
create MyApp/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
create MyApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
create MyApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
create MyApp/app/src/main/res/values/colors.xml
create MyApp/app/src/main/res/values/dimens.xml
create MyApp/app/src/main/res/values/strings.xml
create MyApp/app/src/main/res/values/styles.xml
create MyApp/app/src/main/java/com/ali/mu/App.java
create MyApp/app/src/main/java/com/ali/mu/database/TheDatabase.java
create MyApp/app/src/main/java/com/ali/mu/net/ApiInterface.java
create MyApp/app/src/main/java/com/ali/mu/repository/SampleRepository.java
create MyApp/app/src/main/java/com/ali/mu/util/KeyStoreHelper.java
create MyApp/app/src/main/java/com/ali/mu/util/Prefs.java
create MyApp/app/src/main/java/com/ali/mu/database/converter/DateConverter.java
create MyApp/app/src/main/java/com/ali/mu/database/converter/ListConverter.java
create MyApp/app/src/main/java/com/ali/mu/database/dao/SampleDao.java
create MyApp/app/src/main/java/com/ali/mu/database/entity/Sample.java
create MyApp/app/src/main/java/com/ali/mu/di/component/AppComponent.java
create MyApp/app/src/main/java/com/ali/mu/di/component/ObjComponent.java
create MyApp/app/src/main/java/com/ali/mu/di/module/ActivityModule.java
create MyApp/app/src/main/java/com/ali/mu/di/module/FragmentModule.java
create MyApp/app/src/main/java/com/ali/mu/di/module/NetModule.java
create MyApp/app/src/main/java/com/ali/mu/di/module/RepositoryModule.java
create MyApp/app/src/main/java/com/ali/mu/di/module/ViewModelModule.java
create MyApp/app/src/main/java/com/ali/mu/di/scope/UserScope.java
create MyApp/app/src/main/java/com/ali/mu/di/scope/ViewModelScope.java
create MyApp/app/src/main/java/com/ali/mu/net/mock/MockApiImpl.java
create MyApp/app/src/main/java/com/ali/mu/net/mock/MockCall.java
create MyApp/app/src/main/java/com/ali/mu/net/mock/MockHelper.java
create MyApp/app/src/main/java/com/ali/mu/ui/main/FactoryViewModel.java
create MyApp/app/src/main/java/com/ali/mu/ui/main/MainActivity.java
create MyApp/app/src/main/java/com/ali/mu/ui/main/MainFragment.java
create MyApp/app/src/main/java/com/ali/mu/ui/main/MainViewModel.java

The command will put the code in a directory with the same name as the app name with all non-word characters removed. You can rename it to whatever you like before opening it in Android Studio.

Or you can download the source. Link to it to yo:

git clone [email protected]:alphamu/yo-android-app.git
cd yo-android-app
npm link
cd /some/dir
yo android-app