Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,11 @@ Feel free to add yourself to [contributors.md](https://github.com/federicoiosue/

This kind of contributions **must** have screenshots or screencast as demonstration of the new additions.

### Code style

If you plan to manipulate the code then you'll have to do it by following a [specific code style](https://gist.github.com/federicoiosue/dee53e882b3c70d544f8608769eb02fc).
Also pay attention if you're using any plugin that automatically formats/cleans/rearrange your code and set it to only change that code that you touched and not the whole files.

### Test your code contributions!

All code changes and additions **must** be tested.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,6 @@

package it.feio.android.omninotes.helpers;

import android.content.Context;

import io.nlopez.smartlocation.location.LocationProvider;


public class GeocodeProviderFactory extends GeocodeProviderBaseFactory {

}
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@

public interface Constants extends ConstantsBase {

String TAG = "Omni Notes Alpha";
String EXTERNAL_STORAGE_FOLDER = "Omni Notes Alpha";
String PACKAGE = "it.feio.android.omninotes.alpha";
String PREFS_NAME = PACKAGE + "_preferences";
String TAG = "Omni Notes Alpha";
String EXTERNAL_STORAGE_FOLDER = "Omni Notes Alpha";
String PACKAGE = "it.feio.android.omninotes.alpha";
String PREFS_NAME = PACKAGE + "_preferences";

}
Loading