Removed comment to send user to BoardActivity if there is an existing account

master
Severiano Jaramillo 2018-03-13 17:32:06 -06:00
parent 32a3f306af
commit 0dd2afd47d
2 changed files with 4 additions and 3 deletions

View File

@ -58,7 +58,8 @@
android:name=".service.CrystalWalletService"
android:exported="false" />
<activity android:name=".activities.CreateContactActivity"></activity>
<activity android:name=".activities.CreateContactActivity">
</activity>
</application>
</manifest>

View File

@ -80,7 +80,7 @@ public class IntroActivity extends AppCompatActivity {
//Checks if the user has any seed created
/*AccountSeedListViewModel accountSeedListViewModel = ViewModelProviders.of(this).get(AccountSeedListViewModel.class);
AccountSeedListViewModel accountSeedListViewModel = ViewModelProviders.of(this).get(AccountSeedListViewModel.class);
if (accountSeedListViewModel.accountSeedsCount() == 0){
//If the user doesn't have any seeds created, then
@ -93,7 +93,7 @@ public class IntroActivity extends AppCompatActivity {
//Intent intent = new Intent(this, CreateSeedActivity.class);
Intent intent = new Intent(this, BoardActivity.class);
startActivity(intent);
}*/
}
/*CrystalDatabase db = CrystalDatabase.getAppDatabase(getApplicationContext());
List<AccountSeed> seeds = RandomSeedGenerator.generateSeeds(2);