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 🙏

© 2025 – Pkg Stats / Ryan Hefner

strider-android

v1.1.3

Published

A Strider plugin for Android testing

Downloads

1

Readme

strider-android

A Strider plugin for automating Android projects developed in Eclipse and Android Studio IDEs

Requirements:

  • Linux or Mac OS
  • Android SDK installed. It is recommended to add it to your PATH.
    • The PATH for the SDK must go under the variable ANDROID_HOME
    • The following directories in the SDK must be added to the PATH in order for all the necessary tools to function:
      • tools
      • platform-tools
      • build-tools/21.1.2
    • If you choose not to add the SDK to your PATH then you may specify the location in the plugin
  • Ant installed for Eclipse projects
  • Over 512 MB of memory for running the emulator and for gradle
  • Java Runtime Environment (JRE) or Java Development Kit (JDK)
    • The JDK is required if you want java documentation generation

An Android device must be selected through the config webpage before clicking "Test" WARNING: An emulator has to be started through this plugin in order for functionality. Having an emulator run before starting Strider may result in trouble if you attempt to select the same emulator for testing.

Custom configurations on the webpage:

  • If you don't have your Android SDK in your PATH you can specify it in a text field in the plugin
  • strider-android can grab your existing android devices or create a new one. They can also be deleted in the config page
  • If you create a new device then name, target level and ABI are required

Android Studio projects require no extra configurations. Eclipse projects must have two directories: one which holds the unit tests and one which contains the project. The user can specify which directory contains the unit tests and which contains the project code (more info on the plugin config page).

For Android Studio:

  • make sure your local.properties file is NOT added in your VCS

Given this answer: http://stackoverflow.com/a/16683625

  • If you imported an IntelliJ project to Android Studio then this plugin will not work for Android Studio at the time being

If your computer fails due to not having enough memory than changing the hw.ramSize property down to 96 or 128 MB may help with the problem

  • The config file for the hw.ramSize is in .android/avd/your_emulator_name.avd/config.ini, probably in your root directory

TODO LIST:

  • Allow the user to select a subset of tests to perform
  • Support for IntelliJ IDEA projects?
  • Option to automatically set up the Android SDK?
  • Move the installation logic into the prepare phase
  • Sometimes even after waiting for the device to boot it's still not enough time to wait for pushing an apk install on the device