Welcome to mirror list, hosted at ThFree Co, Russian Federation.

LegendActivity.java « hexeditorwatchface « clusterrr « com « java « main « src « app - github.com/ClusterM/wear-os-hex-editor-watchface.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 787dab5b97f02d38bf2387f4f6aa492c8f5a7e77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package com.clusterrr.hexeditorwatchface;

import android.os.Bundle;
import androidx.appcompat.app.AppCompatActivity;

public class LegendActivity extends AppCompatActivity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.legend);
    }
}