As the note of your project's build.gradle file suggests: // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files Remove the 2 compile statements in that gradle file: compile 'com.android.support:appcompat-v7:20.+' compile 'com.google.android.gms:play-services:6.5.+' And then make your other (module's) build.gradle dependencies look like this: dependencies { compile fileTree ( dir : 'libs' , include : [ '*.jar' ]) compile 'com.android.support:appcompat-v7:21.0.3' compile 'com.google.android.gms:play-services:6.5.+' }
Is It legal to grow/sell Sandalwood? Does Govt Of India permit this? Sandalwood trees were the property of the government for years, but now the rule has changed. As per the Section 108 of the Karnataka Forest (Amendment) Act 2001, sandalwood tree grown in a specific land is the property of the owner of the land. Hence, anybody can grow sandalwood without any apprehensions.The government is also giving subsidy to grow sandalwood through State Medicinal Plants Authority and Horticulture Department. Can Sandalwood cultivation really fetch crores of rupees? Yes it can. Kindly find the following increase in price since 1990 till 2010. The prices mentioned below at per metric ton (mt). As per our project analysis we would be able to fetch upto 8 (mt) from each acre of cultivation Indian Sandalwood has huge demand worldwide and the supply is currently way under the demand. 100 gms of branch wood (sandalwood) costs Rs 900 (source : Mysore sandal soap, Karnataka) 5 ml of sandalwood ...
You can compile and run java module as stand alone java project in Android Studio IDE. Follow the below steps Open your Android project in Android Studio. If you do not have one, create one. Click File > New Module . Select Java Library and click Next . Fill in the package name, etc and click Finish . You should now see a Java module inside your Android project. Add your code to the Java module you’ve just created. Click on the drop down to the left of the run button. Click Edit Configurations… In the new window, click on the plus sign at the top left of the window and select Application A new application configuration should appear, enter in the details such as your main class and classpath of your module.
Comments
Post a Comment