Skip to content

Instantly share code, notes, and snippets.

View danoli3's full-sized avatar

Dan Rosser danoli3

View GitHub Profile
@danoli3
danoli3 / AndroidBuildDebug
Created August 18, 2014 00:42
Android openFrameworks Build Debug script
#!/bin/sh
# The MIT License (MIT)
# Copyright (c) 2014 Daniel Rosser
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
@danoli3
danoli3 / AndroidBuildRelease
Created August 18, 2014 00:41
Android openFrameworks Build Release script
#!/bin/sh
# The MIT License (MIT)
# Copyright (c) 2014 Daniel Rosser
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
@danoli3
danoli3 / AndroidClean
Created August 18, 2014 00:38
Android openFrameworks Clean script
#!/bin/sh
# The MIT License (MIT)
# Copyright (c) 2014 Daniel Rosser
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
@danoli3
danoli3 / AndroidManifest.xml
Created May 27, 2014 07:19
Android Manifest for internet and external
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="cc.openframeworks.AndroidExample"
android:versionCode="1"
android:versionName="1.0"
android:installLocation="auto">
<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="17" />