TUMCampusApp: Update to 1.1.5 (35)
This commit is contained in:
parent
2f70296f2e
commit
4982c46677
|
@ -21,6 +21,8 @@ This app displays:
|
||||||
* Automatic muting of the phone during lectures
|
* Automatic muting of the phone during lectures
|
||||||
* Access to TUMonline
|
* Access to TUMonline
|
||||||
|
|
||||||
|
This app uses binary jar files that have been verified to match their
|
||||||
|
upstream versions.
|
||||||
Bugsense has been removed for F-droid distribution.
|
Bugsense has been removed for F-droid distribution.
|
||||||
Status: Active Development.
|
Status: Active Development.
|
||||||
.
|
.
|
||||||
|
@ -35,6 +37,17 @@ Build:1.1.2,32
|
||||||
prebuild=find src/ -type f |xargs -n 1 perl -pi -e "s/.*package(?=\W)/package/g" && \
|
prebuild=find src/ -type f |xargs -n 1 perl -pi -e "s/.*package(?=\W)/package/g" && \
|
||||||
sed -i '30s/package:/Uri uri = Uri.parse("package:/g' src/de/tum/in/tumcampusapp/tumonline/TUMOnlineConst.java & &rm libs/bugsense*
|
sed -i '30s/package:/Uri uri = Uri.parse("package:/g' src/de/tum/in/tumcampusapp/tumonline/TUMOnlineConst.java & &rm libs/bugsense*
|
||||||
|
|
||||||
|
Build:1.1.5,35
|
||||||
|
commit=60bf15941158ed981042c519c62739090fb7ee5b
|
||||||
|
subdir=TumCampusApp
|
||||||
|
patch=bugsense-new.patch
|
||||||
|
srclibs=1:ActionBarSherlock@4.4.0
|
||||||
|
rm=ActionBarSherlock440,.metadata
|
||||||
|
prebuild=find src/ -type f |xargs -n 1 perl -pi -e "s/.*package(?=\W)/package/g" && \
|
||||||
|
sed -i '30s/package:/Uri uri = Uri.parse("package:/g' src/de/tum/in/tumcampus/tumonline/TUMOnlineConst.java && \
|
||||||
|
rm libs/bugsense* && \
|
||||||
|
cp libs/android-support-v4.jar $$ActionBarSherlock$$/libs/android-support-v4.jar
|
||||||
|
|
||||||
Auto Update Mode:None
|
Auto Update Mode:None
|
||||||
Update Check Mode:RepoManifest
|
Update Check Mode:RepoManifest
|
||||||
Current Version:1.1.5
|
Current Version:1.1.5
|
||||||
|
|
33
metadata/de.tum.in.tumcampus/bugsense-new.patch
Normal file
33
metadata/de.tum.in.tumcampus/bugsense-new.patch
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
--- a/TumCampusApp/src/de/tum/in/tumcampus/activities/StartupActivity.java 2013-11-23 12:45:50.093747730 +0100
|
||||||
|
+++ b/TumCampusApp/src/de/tum/in/tumcampus/activities/StartupActivity.java 2013-11-23 16:31:20.752918783 +0100
|
||||||
|
@@ -6,7 +6,7 @@
|
||||||
|
import android.os.StrictMode;
|
||||||
|
import android.util.Log;
|
||||||
|
|
||||||
|
-import com.bugsense.trace.BugSenseHandler;
|
||||||
|
+//import com.bugsense.trace.BugSenseHandler;
|
||||||
|
|
||||||
|
import de.tum.in.tumcampusapp.auxiliary.DemoModeStartActivity;
|
||||||
|
|
||||||
|
@@ -18,18 +18,18 @@
|
||||||
|
*/
|
||||||
|
public class StartupActivity extends Activity {
|
||||||
|
public static final boolean DEMO_MODE = false;
|
||||||
|
- public static final boolean TRACK_ERRORS_WITH_BUG_SENSE = true;
|
||||||
|
+ public static final boolean TRACK_ERRORS_WITH_BUG_SENSE = false;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void onCreate(Bundle savedInstanceState) {
|
||||||
|
super.onCreate(savedInstanceState);
|
||||||
|
|
||||||
|
- // Init a Bug Report to https://www.bugsense.com
|
||||||
|
+ /** Init a Bug Report to https://www.bugsense.com
|
||||||
|
if (TRACK_ERRORS_WITH_BUG_SENSE) {
|
||||||
|
Log.d(this.getClass().getSimpleName(), "BugSense initialized");
|
||||||
|
BugSenseHandler.initAndStartSession(this, "19d18764");
|
||||||
|
}
|
||||||
|
-
|
||||||
|
+**/
|
||||||
|
// Workaround for new API version. There was a security update which
|
||||||
|
// disallows applications to execute HTTP request in the GUI main
|
||||||
|
// thread.
|
Loading…
Reference in a new issue