mirror of https://github.com/M66B/NetGuard.git
parent
bcba2783c8
commit
6594886a21
|
@ -339,7 +339,8 @@ public class ActivityMain extends AppCompatActivity implements SharedPreferences
|
||||||
registerReceiver(packageChangedReceiver, intentFilter);
|
registerReceiver(packageChangedReceiver, intentFilter);
|
||||||
|
|
||||||
// First use
|
// First use
|
||||||
if (!initialized) {
|
boolean admob = prefs.getBoolean("admob", false);
|
||||||
|
if (!initialized || !admob) {
|
||||||
// Create view
|
// Create view
|
||||||
LayoutInflater inflater = LayoutInflater.from(this);
|
LayoutInflater inflater = LayoutInflater.from(this);
|
||||||
View view = inflater.inflate(R.layout.first, null, false);
|
View view = inflater.inflate(R.layout.first, null, false);
|
||||||
|
@ -360,7 +361,7 @@ public class ActivityMain extends AppCompatActivity implements SharedPreferences
|
||||||
public void onClick(DialogInterface dialog, int which) {
|
public void onClick(DialogInterface dialog, int which) {
|
||||||
if (running) {
|
if (running) {
|
||||||
prefs.edit().putBoolean("initialized", true).apply();
|
prefs.edit().putBoolean("initialized", true).apply();
|
||||||
initAds();
|
prefs.edit().putBoolean("admob", true).apply();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
@ -414,6 +415,9 @@ public class ActivityMain extends AppCompatActivity implements SharedPreferences
|
||||||
Log.e(TAG, ex.toString() + "\n" + Log.getStackTraceString(ex));
|
Log.e(TAG, ex.toString() + "\n" + Log.getStackTraceString(ex));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Initialize ads
|
||||||
|
initAds();
|
||||||
|
|
||||||
// Handle intent
|
// Handle intent
|
||||||
checkExtras(getIntent());
|
checkExtras(getIntent());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue