Skip to content

Commit

Permalink
added gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
nebogeo committed Feb 21, 2018
1 parent 66d73e1 commit 9e61558
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 2 deletions.
36 changes: 36 additions & 0 deletions .gitignore
@@ -0,0 +1,36 @@
#built application files
*.apk
*.ap_

# files for the dex VM
*.dex

# Java class files
*.class

# generated files
bin/
gen/

# Local configuration file (sdk path, etc)
local.properties

# Windows thumbnail db
Thumbs.db

# OSX files
.DS_Store

# Android Studio
*.iml
.idea
#.idea/workspace.xml - remove # and delete .idea if it better suit your needs.
.gradle
build/
.navigation
captures/
output.json

#NDK
obj/
.externalNativeBuild
Expand Up @@ -811,7 +811,7 @@ public void onProgressChanged(SeekBar v, int a, boolean s) {
//ClipDrawable d1 = (ClipDrawable) ld.findDrawableByLayerId(R.id.seekprogress);
//int c=(int)((a/100.0f)*255.0f);
//int mc = 255-c;
//d1.setColorFilter(Color.argb(127,c,mc,mc), PorterDuff.Mode.SRC_OVER);
// d1.setColorFilter(Color.argb(127,c,mc,mc), PorterDuff.Mode.SRC_OVER);

CallbackArgs(ctx,ctxname,v.getId(),Integer.toString(a));
}
Expand Down
1 change: 0 additions & 1 deletion android/app/src/main/jni/Application.mk
@@ -1,3 +1,2 @@
APP_STL := stlport_static
#APP_PLATFORM := android-19 # will need to change post-kitkat

0 comments on commit 9e61558

Please sign in to comment.