This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// global.swift | |
// | |
// Created by Paul Lehn on 1/4/18. | |
// Copyright © 2018 Paul Lehn. All rights reserved. | |
// | |
import Foundation | |
struct global { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// MyTimer.swift | |
// | |
// Created by Paul on 10/11/18. | |
// Copyright © 2018 Paul Lehn. All rights reserved. | |
// | |
import Foundation | |
class MyTimer: NSObject { | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// PaulsRatingManager.swift | |
// | |
// Created by Paul on 1/7/19. | |
// Copyright © 2019 Paul Lehn. All rights reserved. | |
// | |
import Foundation | |
import StoreKit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//step 1: | |
import android.content.Intent; | |
//step 2: add to activity you want to sav variables from | |
Intent i = new Intent(getApplicationContext(), ActivityName.class); | |
i.putExtra("someVariable","variableValue"); | |
startActivity(i); | |
//step 3: add to activity you want to pulll variables from |