Files
vpnhotspotmod/mobile/src/main/java/be/mygod/vpnhotspot/SettingsFragment.kt
Mygod eb165db86c Support VPN over any native tethering
First big refactoring of this app.
2018-01-13 00:42:51 +08:00

13 lines
416 B
Kotlin

package be.mygod.vpnhotspot
import android.os.Bundle
import android.support.v4.app.Fragment
import android.view.LayoutInflater
import android.view.View
import android.view.ViewGroup
class SettingsFragment : Fragment() {
override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View? =
inflater.inflate(R.layout.fragment_settings, container, false)
}