• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Backing Tracks Player

Hi everyone.
I am not shure if is allowed here to publish a post like this, so if not, I want to apologize to the administration team of this forum first.

I developed an app dedicated for gigging musitians to play with backing tracks live, as an ansver to very famous Apple solution, but on android platform.
(I and my friends musitians are using it in the giggs already with sucess so I decided to publish the app in a PlaySore)

The basic funtionality is:
- Autopause as default. (You can disable it for each song separately)
- Crete as many customs setlists as you want (even during your performance changes are allowed).
- Suport any audio format that supports your android device.
- Very quick media browser, sorted by folders, SD cart supported (included name filter).
- You can adjust the volume for each track separately.
- You can can assign multiple text changes inside the progress of your tracks, so no scrolling is needed.
- The player is "service based", so it never stops even if you accidentaly quit the aplication.
- The tho different layouts for portail and landscape. (changes during playback also allowed)

I would like if someone of gigging musitians will test it and post me an opinion to make it better.
If you are interesting, search for "StageBaxx" in PlayStore, and install a free demo.

Thank You very much.

Mr

I rebooted my Mobice REBEL but it still requires Privacy Protection Password of I don't know, how do I remove it?? please help
did you factory reset your phone? is the phone new or used? that is what it seems to be. if so then you tripped the phone's FRP (factory reset protection). you can't bypass this. the only way to get into your phone is to enter the google acct info that the phone was originally used during setup as @Dannydet suggested.....no other way around it.

Languages problem

With your Gboard on screen, tap on the wrench icon to get to its Settings menu -- in the Languages menu you can add or delete additional language keyboards; in the Preferences menu there's an option to 'Show language switch key' which adds a little globe shaped icon next to the space bar so if you have multiple language keyboards installed just tap on that icon to toggle from one to another; in the Advanced menu there's an option to 'Show app icon' which may or may not make things more convenient to access the Gboard app itself if needed.

Lots of other tips here:
https://www.computerworld.com/article/3048523/gboard-android-shortcuts.html

Accessories Chromebook or chromebox

well are you looking for mobility? or not?

i love my pixelbook. it is pretty much all i use.....especially now that i have stadia, i can even game on it now!!!!!!

....so yes my vote goes to the chromebook. plus i see a lot of folks come here asking for help with their android box with not much help as most of us here do not own an android box.

also i love asus products. i used to have a few of the tablets and i think i have a laptop from them lying around some place.

Battery slowly expanding?

I would also like to put as a side note that the phone used to come into contact with fresh water quite frequently but no salt water, I have never noticed the phone act strangely after coming into contact with water during any of those times nor had either lens fogged up. It never came into contact with water after the lens broke either.
welcome to AF!!!!!!!!!!!!!!!!!

are you like a lifeguard?????:p:p:p:p:p:p:p:p

if the back of the phone is expanding, i would bet my money on it being the battery. the s7 is getting pretty old and batteries tend to have a shelf life of about 3-4 years which puts your device right in the middle of it. i would suggest you start looking for an upgrade asap.

POST jquery not working

Hello,

I'm newly and I want to ask you how to use POST jquery from cordova apache? From browser works, but in android device not working.
<!DOCTYPE html>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<html>
<head>
<!--
Customize this policy to fit your own app's needs. For more guidance, see:
https://github.com/apache/cordova-plugin-whitelist/blob/master/README.md#content-security-policy
Some notes:
* gap: is required only on iOS (when using UIWebView) and is needed for JS->native communication
* https://ssl.gstatic.com is required only on Android and is needed for TalkBack to function properly
* Disables use of inline scripts in order to mitigate risk of XSS vulnerabilities. To change this:
* Enable inline JS: add 'unsafe-inline' to default-src
-->
<!--<meta http-equiv="Content-Security-Policy" content="default-src 'self' data: gap: https://ssl.gstatic.com 'unsafe-eval'; style-src 'self' 'unsafe-inline'; media-src *; img-src 'self' data: content:;>-->
<meta name="format-detection" content="telephone=no">
<meta name="msapplication-tap-highlight" content="no">
<meta name="viewport" content="initial-scale=1, width=device-width, viewport-fit=cover">
<link rel="stylesheet" type="text/css" href="css/index.css">
<title>Hello World</title>
</head>
<body>
<div class="app">
<h1>Apache Cordova</h1>
<div id="deviceready" class="blink">
<p class="event listening">Connecting to Device</p>
<p class="event received">Device is Ready</p>
</div>
</div>
<script type="text/javascript" src="cordova.js"></script>
<script type="text/javascript" src="js/index.js"></script>
<script type="text/javascript" src="js/jquery-3.4.1.min.js"></script>
<script type="text/javascript" src="js/jquery.cookie.min.js"></script>
<script type="text/javascript" src="js/datatables.min.js"></script>

<script>
function getUrlVars() {
var vars = [], hash;
var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&');
for (var i = 0; i < hashes.length; i++) {
hash = hashes.split('=');
vars.push(hash[0]);
vars[hash[0]] = hash[1];
}
return vars;
}



$(document).ready(function () {
$("#dvTest").click(function () {


$.ajax({
type: "POST",
url: "http://www.domainname/webservice/login.asmx/prijava",
// data: JSON.stringify({ username: "desoft1", password: "+UvML^cIAjFL}4" }),
// contentType: "application/json; charset=utf-8",
// dataType: "json",
success: function (data) {

alert("30");

var json = data.d;

$('#example').DataTable({
"data": JSON.parse(json),
"columns": [
{ "data": "Id" },
{ "data": "Company" }
]
});

$('#example tbody').on('click', 'tr', function () {
var table = $('#example').DataTable();

var data = table.row(this).data();
$.cookie("IdCompany", data.Id);


});
},
failure: function (msg) {
alert(msg.d);
}
});
});
});
</script>
<br /><br />
<div id="dvTest">TEST121</div>


<table id="example" class="display" style="width:100%">
<thead>
<tr>
<th>Id</th>
<th>Company</th>
</tr>
</thead>
</table>

</body>
</html>



config.xml:
<?xml version='1.0' encoding='utf-8'?>
<widget id="pn" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<name>pn</name>
<description>
A sample Apache Cordova application that responds to the deviceready event.
</description>
<author email="dev@cordova.apache.org" href="http://cordova.io">
Apache Cordova Team
</author>
<content src="index.html" />
<plugin name="cordova-plugin-whitelist" spec="1" />
<access origin="*" />
<access origin="*" subdomains="true"/>
<allow-navigation href="*" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<allow-intent href="tel:*" />
<allow-intent href="sms:*" />
<allow-intent href="mailto:*" />
<allow-intent href="geo:*" />
<platform name="android">
<allow-intent href="market:*" />
</platform>
<platform name="ios">
<allow-intent href="itms:*" />
<allow-intent href="itms-apps:*" />
</platform>
<resource-file src="platforms/android/app/src/main/AndroidManifest.xml" target="AndroidManifest.xml" />
</widget>

AndroidMainfest.xml:
<?xml version='1.0' encoding='utf-8'?>
<manifest android:hardwareAccelerated="true" android:usesCleartextTraffic="true" android:versionCode="10000" android:versionName="1.0.0" package="pn" xmlns:android="http://schemas.android.com/apk/res/android">
<supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:resizeable="true" android:smallScreens="true" android:xlargeScreens="true" />
<uses-permission android:name="android.permission.INTERNET" />
<application android:hardwareAccelerated="true" android:icon="@Mipmap/ic_launcher" android:label="@String/app_name" android:supportsRtl="true">
<activity android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode" android:label="@String/activity_name" android:launchMode="singleTop" android:name="MainActivity" android:theme="@android:style/Theme.DeviceDefault.NoActionBar" android:windowSoftInputMode="adjustResize">
<intent-filter android:label="@String/launcher_name">
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>



Thank you for your help.

Filter

Back
Top Bottom