mirror of
				https://github.com/musix-org/musix-oss
				synced 2025-11-04 09:49:32 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			44 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html>
 | 
						|
  <head>
 | 
						|
    <meta charset="UTF-8" />
 | 
						|
    <title>Test App</title>
 | 
						|
    <script src="sdk.js"></script>
 | 
						|
    <style>
 | 
						|
      .formatted-content {
 | 
						|
        white-space: pre-wrap;
 | 
						|
        word-break: break-all;
 | 
						|
      }
 | 
						|
    </style>
 | 
						|
  </head>
 | 
						|
  <body>
 | 
						|
    <p>
 | 
						|
      <label for="appName">App Name</label>
 | 
						|
      <input id="appName" value="app-name" />
 | 
						|
    </p>
 | 
						|
    <p>
 | 
						|
      <label for="projectId">Project Id</label>
 | 
						|
      <input id="projectId" value="android-gcm-test-519bd" />
 | 
						|
    </p>
 | 
						|
    <p>
 | 
						|
      <label for="apiKey">API Key</label>
 | 
						|
      <input id="apiKey" value="AIzaSyB2bpGcqUx37Gm0iCUw0c7xj75arKYYcbA" />
 | 
						|
    </p>
 | 
						|
    <p>
 | 
						|
      <label for="appId">App ID</label>
 | 
						|
      <input id="appId" value="1:35006771263:android:d93b5ca1475efe57" />
 | 
						|
    </p>
 | 
						|
    <p>
 | 
						|
      <button id="getId">Get ID</button>
 | 
						|
      <button id="getToken">Get Token</button>
 | 
						|
      <button id="deleteInstallation">Delete Installation</button>
 | 
						|
      <button id="clearDb">Clear IndexedDB</button>
 | 
						|
    </p>
 | 
						|
    <h1>Requests</h1>
 | 
						|
    <div id="requests"></div>
 | 
						|
    <h1>Database Contents</h1>
 | 
						|
    <div id="database"></div>
 | 
						|
    <script src="index.js"></script>
 | 
						|
  </body>
 | 
						|
</html>
 |