Skip to content

Instantly share code, notes, and snippets.

View KyleT-bone's full-sized avatar

Kyle Tabone KyleT-bone

View GitHub Profile
<?xml version="1.0" encoding="utf-8"?>
<ItemRepository>
<baseUrl>gs://firstdlctest.appspot.com/images/</baseUrl>
<assets>
<asset>
<id>100</id>
<name>Diamond Package</name>
<desc>80 Diamonds</desc>
<image>80Diamonds</image>
<prices>
using System;
using System.Collections.Generic;
[Serializable]
public class AssetData
{
public int Id { get; set; }
public string Description { get; set; }
public string Image { get; set; }
public Price Price { get; set; }
package com.example.glucocare;
import android.app.Dialog;
import android.content.Context;
import android.content.DialogInterface;
import android.content.SharedPreferences;
import android.os.Bundle;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;