blob: 2a2ce0d7b1e6865d4969eee21cc90b184499f77e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
package com.example.wiimmterfaceandroid.wiimmfi;
import android.content.Intent;
import android.os.Bundle;
import org.jsoup.*;
import androidx.appcompat.app.AppCompatActivity;
import com.example.wiimmterfaceandroid.R;
public class WiimmfiActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Intent intent = getIntent();
String friendCode;
setContentView(R.layout.activity_wiimmfi);
}
}
|